开发者问题收集
在为我的 Ionic3 项目运行ionic cordova build android --prod时,我遇到了以下错误。仅使用ionic cordova build android不会出现任何错误。ionic-app-script task: "build"TypeError: Object prototype may only be an Object or null: undefinedTy
在我的 app.component.ts 文件中,我有一个代码,如果用户点击 FCM 通知,它会将用户发送到不同的页面代码如下:this.fcm.listenToNotifications().subscribe(async(notification) => {if (notification.tap) {const pages = [{page: Page1},{page: Page1Subpa
我想将 .html 代码中的 [(ngModel)] 分配给一个为空(null 或未定义)的对象,但它给出了错误_co.object 为 null。有两种情况,第一种是我的对象有值,第二种是没有值。第一种情况 ngModel 工作正常,但第二种情况,它给出了为 null 的错误。我尝试使用 elvis(?) 运算符,但没有帮助。问题解决了!!谢谢大家我的 .ts 页面profile: Profil
我在 ionic 3 iOS 应用中使用 cordova-plugin-document-scanner 插件,它允许我使用一些附加功能拍摄照片。一切正常,我在成功回调 (file:///...) 中获得了 fileURI。拍照后,我无法更新 DOM 以在我的视图 home.html 中显示图像。我也尝试更新一个简单的文本(测试),但它也不起作用。我尝试过使用 ngZone 和 ChangeDet
我正在使用Ionic 3构建一个简单的地图应用程序,为了呈现地图,我正在使用leaflet(类型化版本)和OpenStreet 地图图块我想让用户能够下载和缓存地图,因此我在这里找到了leaflet-offline并想使用它,因为它允许我使用我的localstorage来存储图像。现在我的问题出现了,因为我试图将 typescript 与 javascript 混合使用,但我不知道如何使其正常工作
我有一个 ionic3 应用程序,并且我使用npm install -g ionic cordova安装了 ionic,但是当我使用ionic serve运行该应用程序时,出现此错误:typescript error[app-scripts] Unknown compiler option 'resolveJsonModule'.[app-scripts]
我正在使用 angular ionic 3,当我点击某个按钮时出现此错误,有人可以帮我确定吗?realestateproductdetails.tsif (localStorage.getItem('agentdetail')) {this.agentdetail = JSON.parse(localStorage.getItem('agentdetail'));for (let i = 0; i
ng build --prodDate: 2017-12-16T12:11:38.469ZHash: 9af9d0824b91129853acTime: 3766mschunk {0} (styles) [initial] [rendered]chunk {1} polyfills.bf31271ed8358d9c1c6b.bundle.js (polyfills) 155 bytes [i
我有一个简单的应用程序,需要存储姓名和电子邮件。我已经安装了cordova-sqlite-storage:ionic cordova plugin add cordova-sqlite-storage并且它在模拟器上运行良好。当我使用以下命令将其部署到设备上时:ionic cordova run android --device我得到:plugin_not_installedERROR Error
我可能有this.nav.push在离子中的问题。我已经完成了登录/注册页面,但是当我登录时,我会收到此错误消息。我必须在login.ts和例如home.ts中添加一些代码(主页)?008010265124244751@Edit:当我想登录到我的应用时,问题就会发生。这是要登录的代码。登录.TS720763352auth-service.ts(这是公共功能,可以执行我的登录名以及我需要输入登录名的
我正在学习 Ionic 3,在尝试制作检查唯一用户名的自定义验证器时出现此错误。我已尽最大努力,但无法解决这个问题。CustomValidators.tsimport { Directive, Input } from '@angular/core';import { FormControl, Validator, AbstractControl } from '@angular/forms';i
我只是不明白这个错误,为什么它无法读取属性“nav”。我很困惑。希望有人能帮助我并向我解释这个错误,这里是错误:import { Component, ViewChild } from '@angular/core';import { Platform, Nav } from 'ionic-angular';import { StatusBar } from '@ionic-native/stat
我在 MomentJs 中实现了这个功能 CreateFormat(date: string, time: string): string {let now = moment(date + " " + time, "YYYY-MM-DD H:m:s z").toDate();return moment(now, "YYYY-MM-DD H:m:s z").format("HH:mm");
我的 DateTime 组件显示我的日期名称未定义:HTML<ion-item><ion-label>Data</ion-label><ion-datetime displayFormat="DDDD DD MMMM" pickerFormat="DD MMMM" [(ngModel)]="myDate"></ion-datetime></ion-item>APP.MODULE 应用翻译:Ioni
我正在尝试通过 ngModel 绑定我的 Ionic DateTime 组件。我从后端获取一个如下所示的值"30-07-2021 12:00:00 AM"然后我将其处理为 -var date = "30-07-2021 12:00:00 AM"var finalDate = date.split(" ")[0].split("-");var fdate =finalDate[2] +"-" +fi