问题标签 [ionic5]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
41746 浏览

angular - 在 Ionic 3/4/5 中渲染 HTML 内容

视图.html

<div>{{text}}</div>

问题是“文本”具有我希望显示的 HTML,但它只显示 HTML 标签和文本。

我能做些什么来呈现这些内容?

我已经尝试过早期版本(Ionic 1/2)的解决方案,但 Ionic v3 似乎没有任何效果。

0 投票
2 回答
3532 浏览

angular - Prevent duplicate Toast messages in Ionic

I have implemented toast using ToastController in my ionic2 project . Currently i am facing an issue with the duplicate toast messages . Is there any way to prevent the duplication / overlapping of toast message in ionic2 / angular2

(NB : Duplication means when I click on a button I am displaying a toast , if I click on the same button multiple times the toast messages overlaps ) ?

code

I am calling this method on an button click .

Edited

  1. with duplicates toast (taken example using toastr , same sitaution is for me) enter image description here

  2. when i enable "prevent notification" , the duplicate toast are not there within the timeout duration . enter image description here

Any help is much appreciated.

0 投票
1 回答
2315 浏览

ionic-framework - Ionic 4 & 5,爱普生机型热敏打印机库,需要安卓设备自动打印

我有一台热敏打印机,需要通过 WiFi 连接到我的 Android 设备。每当触发按钮时,我都需要它自动打印(没有打印对话框)

目前,我正在使用 Ionic 4,但我找不到任何支持 ESC/POS 语言的库。我可以使用任何库吗?

注意:以下解决方案适用于 Ionic 4 和 5。

0 投票
10 回答
62790 浏览

android - AAPT:错误:属性 android:requestLegacyExternalStorage 未找到

AndroidManifest.xml 中的收集错误

AAPT:错误:找不到属性 android:requestLegacyExternalStorage。

虽然该属性在那里,但它写了一个错误

我的 AndroidManifest.xml

Знаете кого-нибудь, кто может ответить? ошибка сбора в AndroidManifest.xml

AAPT:ошибка:атрибут android:requestLegacyExternalStorage не найден。

对于离子开发人员,请参考此答案来解决此问题: https ://stackoverflow.com/a/65595715/10533962

0 投票
1 回答
103 浏览

android - IONIC 5,一些 css/Scss 在浏览器中可以正常工作,但在手机中不能

似乎display:..是导致问题(不确定),因为每件事都很好,除了:

浏览器中的页面:

浏览器中的页面

Android中的页面:

android中的页面

0 投票
2 回答
15065 浏览

angular - 如何从 Ionic 5 中的@ionic/angular 错误修复成员事件

我已从 Ionic 4 升级到 Ionic 5,现在出现以下错误:

src/app/app.component.ts(4,10) 中的错误:错误 TS2305:模块 '"/node_modules/@ionic/angular/ionic-angular"' 没有导出的成员 'Events'。

以下导入行导致问题:

如何从@ionic/angularIonic 5 中的错误中修复成员事件?

0 投票
5 回答
8006 浏览

ionic-framework - 为什么 Ionic 5 内容填充不起作用?

升级到 Ionic 5 后,填充属性不再像 Ionic 4 中那样工作:

有什么修复吗?

0 投票
2 回答
8459 浏览

angular - 不能在环境上下文中声明访问器

我正在尝试在 Ionic 现有项目(使用 Ionic/Angular 制作)上安装 Angular Material

npm install –save @angular/material @angular/cdk @angular/animationse

但是当我“服务”应用程序时,它给了我这个错误:

这是我的“app.module.ts”

“包.json”

和“离子信息”

我尝试用谷歌搜索该错误,但没有找到任何解决方案。有人有我同样的问题吗?

0 投票
1 回答
2696 浏览

ionic-framework - 从 Ionic 4 / Angular 7 升级到带有 Angular 9 的 Ionic 5

Ionic YouTube 官方频道上有一个很棒的教程视频,它将向您展示升级到 Ionic 5 和 Angular 9 的最佳情况。

然而,对于我去年制作的简单原型应用程序(只是一个让我重新排序列表的演示),我尝试更新但几乎立即脱轨。

事实证明,它正在使用"@angular/core": "^7.2.2"它破坏了应用程序,ionic serve因为它期待 Angular 8。

然后我尝试运行,ng upgrade但遇到不兼容的对等依赖关系codelyzer@ionic/angular-toolkit@angular/http

所以我尝试先升级到 Angular 8,npm i @angular/core@"~8.x.x"但失败了npm i zone.js@~0.9.1

我怎样才能成功更新到最新最好的?

0 投票
1 回答
1428 浏览

modal-dialog - 迁移到 ionic 5 和 angular 8 多模式后不要关闭

我有一个用 ionic 4 和 angular 7 开发的旧应用程序,有一个组件显示模态-A,然后模态-A 呈现模态-B,当模态-B 被解除时,将数据传递给模态-A,后者解除并传递数据到组件,现在我想切换到angular 8,新app可以呈现modal-A和modal-B,但是当modal-B关闭时,modal-A不关闭,组件是这样呈现modal-A的:

这就是modal-A呈现modal-B的方式:

提前致谢