ionic-framework 相关问题

Ionic是一个前端框架,用于使用Sass和Angular开发具有HTML的本机感混合移动应用程序。默认情况下,它运行在Cordova之上。

DevOps XCode@5 不创建 .ipa 文件

我有一个 Capacitor 应用程序,我正在尝试使用 xcode@5 任务通过 DevOps 构建该应用程序。 但是,我没有在完成任务时生成 .ipa。 我缺少什么? 有没有...

回答 1 投票 0

角度路线未命中第一个可能的路线

当我路由到 localhost:4200 时,我希望我的路由重定向到 localhost:4200/tabs/search 因为这是我的起始路由,但不知何故它停留在路由 localhost:4200 并加载 MyEventsComponent....

回答 1 投票 0

如何使用电容器最小化离子中的应用程序

我想在使用电容器的离子应用程序中按后退按钮时最小化应用程序。 (需要明确的是,我所说的最小化是指在按下...时触发“中后退按钮”的操作

回答 2 投票 0

密码可见性切换

我正在尝试在页面中使用打字稿功能来更改切换密码可见性的图标。这就是它应该如何工作:我按下一个按钮(在本例中是一个可点击的图标),...

回答 1 投票 0

“ion-avatar”不是已知元素错误消息

继承了项目的以下Ionic Angular代码。我的 user-photo.component.html 看起来像: ...

回答 2 投票 0

Ionic Native Geolocation 示例不理解描述演示代码

我正在使用此处的 Ionic Native Geolocation 插件,并从提供的示例开始,所以我这样做了: 获取位置(){ this.geolocation.getCurrentPosition().then((resp) => { // 分别

回答 1 投票 0

iframe 和 cordova/ionic 后退按钮

我正在使用 iframe 在我的 ionic 视图之一中加载网页。 </ifra...</desc> <question vote="0"> <p>我正在使用 iframe 在我的 ionic 视图之一中加载网页。</p> <pre><code>&lt;iframe name=&#34;siteFrame&#34; id=&#34;siteFrame&#34; src=&#34;www.example.com&#34; style=&#34;width:100%; height:100%&#34; height=&#34;100%&#34; &gt;&lt;/iframe&gt; </code></pre> <p>发生的情况是,当按下后退按钮而不是返回到 iframe 中的上一页时,应用程序存在。 </p> <p>我无法检测到 iframe 的当前 href,因为跨域安全问题阻止了我。</p> <p>我想要做的是手机后退按钮应该在 iframe 上工作,但是当 iframe 位于其主页时,后退按钮应该在视图上工作</p> <p>这怎么办?</p> </question> <answer tick="false" vote="1"> <p>问题是 Cordova 将后退按钮链接到 webviews back 命令,如果它不在 iframe 中返回,则 iframe 永远不会形成您的 webviews 历史记录的一部分(它应该是,但我可能是错的 - 有你完全改变了你的历史记录的运作方式吗?)</p> <p>您可以尝试自己捕获后退动作,并使用它来指示 iframe 返回页面。</p> <p>实现此目的的一种方法是 <pre><code>document.addEventListener(&#34;backbutton&#34;, yourFunctionHere, false);</code></pre>,然后您可以使用 <pre><code>yourFunctionHere</code></pre><pre> 指示 iframe 返回到 </pre><code>iframe.contentWindow.history.back();</code></p> 调用中 <p>我尚未测试上述任何内容,但希望这能为您提供一个可以继续工作的起点。然而,考虑到您正在跨域工作,甚至 back() 命令的访问也可能受到限制,在这种情况下,您可能不走运。</p> <p>您可以在这里找到相关的 Cordova 文档,以防万一:<a href="https://cordova.apache.org/docs/en/edge/cordova_events_events.md.html" rel="nofollow">https://cordova.apache.org/docs/en/edge/cordova_events_events.md.html</a></p> </answer> <answer tick="false" vote="0"> <p>处理 ionic 后退按钮按下事件并从那里导航 iframe。检查下面的链接 <a href="https://sathesh.in/ionic/iframe-and-cordova-ionic-back-button/" rel="nofollow noreferrer">点击这里</a></p> </answer> <answer tick="false" vote="0"> <p>这对我来说是工作!</p> <pre><code>.close{ position: absolute; z-index: 100; background-color: transparent; width: 100%; height: 50px; margin-top: 1.5rem; img{ width: 32px; height: 32px; float: right; margin-right: 1.2rem; margin-top: 1rem; } </code></pre> <p>}</p> <pre><code> .iframe{ position: relative; z-index: 99; } </code></pre> </answer> <answer tick="false" vote="0"> <blockquote> <p>HTML</p> </blockquote> <pre><code>&lt;ion-content&gt; &lt;iframe id=&#34;myIframe&#34; src=&#34;https://example.com&#34; style=&#34;width:100%; height:100%;&#34;&gt;&lt;/iframe&gt; &lt;/ion-content&gt; import { Component, ElementRef, ViewChild } from &#39;@angular/core&#39;; import { GestureController } from &#39;@ionic/angular&#39;; @Component({ selector: &#39;app-your-page&#39;, templateUrl: &#39;./your-page.page.html&#39;, styleUrls: [&#39;./your-page.page.scss&#39;], }) export class YourPagePage { @ViewChild(&#39;myIframe&#39;, { static: true }) myIframe: ElementRef&lt;HTMLIFrameElement&gt;; constructor(private gestureCtrl: GestureController) { } ngAfterViewInit() { const gesture = this.gestureCtrl.create({ el: this.myIframe.nativeElement, gestureName: &#39;swipe&#39;, onMove: (ev) =&gt; this.onSwipe(ev), }); gesture.enable(); } onSwipe(event: any) { // Check for swipe direction (right to left) if (event.deltaX &gt; 50) { this.myIframe.nativeElement.contentWindow.history.back(); } } } </code></pre> <blockquote> <p>要使此方法发挥作用,iframe 内容必须来自同一个 领域。如果是跨域iframe,就会遇到安全问题 限制。确保 iframe 内容来自您自己的域或 您控制的域。</p> </blockquote> </answer> </body></html>

回答 0 投票 0

尝试将 @angular/pwa 添加到我的 Ionic - 电容器应用程序中

我正在尝试添加 @angular/pwa 但失败并出现以下错误,这是新的。我该怎么做才能解决这个错误? ng 添加@angular/pwa ℹ 使用包管理器:npm ✔ 找到兼容包...

回答 1 投票 0

使用反应式表单的 ionic 5 和 Angular 9 出现错误“没有带有名称的表单控件的值访问器”

我正在使用 ionic 5 和 Angular 9。我正在尝试创建一个反应式表单,但收到错误“没有名称为“lastname”的表单控件的值访问器”。 这是我的代码: 出口类

回答 4 投票 0

Ionic 6 隐藏部分日期时间标题

我正在将 Ionic 6 与 Angular 结合使用。我有一个日期时间组件,并且设置了标题槽,例如: 我正在将 Ionic 6 与 Angular 结合使用。我有一个日期时间组件,并且设置了 title 槽,例如: <ion-datetime [showDefaultTitle]="false" presentation="date"> <span slot="title">Title</span> </ion-datetime> 问题是,这将我的标题显示为副标题,而另一个包含当前所选日期的标题显示为标题。在他们自己的文档中的示例中,这甚至不存在。 我的问题是如何删除这个附加标头? 它是与类datetime-selected-date一起添加的。我尝试通过设置属性 display: none 来不显示此类,但即使使用 ::ng-deep 执行此操作,它也不起作用。 我使用此结构在日期选择器上方显示标题,而不在标题中显示日期: <ion-item> <ion-label>...</ion-label> <ion-datetime>...</ion-datetime> </ion-item> 我正在使用 ionic + vue3。不确定这是否能完全解决您的问题,但我想隐藏日历标题,并且我能够这样做: onMounted(() => { const ionDatetime = document.querySelector('ion-datetime'); if (ionDatetime) { const observer = new MutationObserver(() => { const shadowRoot = ionDatetime.shadowRoot; if (shadowRoot) { const calendarHeader = shadowRoot.querySelector('.calendar-header'); const timeButton = shadowRoot.querySelector('::part(time-button)'); const monthYearButton = shadowRoot.querySelector('::part(month-year-button)'); const calendarActionButtons = shadowRoot.querySelector('::part(calendar-action-buttons)'); if (calendarHeader) { calendarHeader.style.display = 'none'; } if (timeButton) { timeButton.style.display = 'none'; } if (monthYearButton) { monthYearButton.style.display = 'none'; } if (calendarActionButtons) { calendarActionButtons.style.display = 'none'; } } }); observer.observe(ionDatetime, { childList: true, subtree: true }); } });

回答 2 投票 0

ionic 7 电容 Android 应用视频编辑器 SDK 实现?

我正在使用 Angular 17 构建带有 Capacitor 的 Ionic 7 应用程序。我需要添加类似于 Instagram Reels 的视频编辑功能。具体来说,我需要以下选项: 上传视频 剪切视频 添加...

回答 1 投票 0

IONIC 6 Capacitor Android 和 iOS 应用程序和 Azure AD 身份验证在外部浏览器中打开

我使用 Ionic 6 框架、Angular 和 Capacitor 开发适用于 Android 和 iOS 的应用程序。我想使用 Microsoft 的 Azure AD 进行身份验证,而不使用 Auth Connect 模块。我已经集成了

回答 2 投票 0

ionic 7 电容应用程序视频编辑器 SDK 实现?

我正在使用 Angular 17 构建带有 Capacitor 的 Ionic 7 应用程序。我需要添加类似于 Instagram Reels 的视频编辑功能。具体来说,我需要以下选项: 上传视频 剪切视频 添加...

回答 1 投票 0

如何在 ion-alert-button 中使用 Ion-router-link

实际上我已经创建了一个按钮,当我们单击该按钮时,它会显示警报,您确定吗?因此,当我单击“是”时,我想重定向到另一个页面或路由到另一个页面 实际上我已经创建了一个按钮,当我们单击该按钮时,它会显示警报,您确定吗?因此,当我单击“是”时,我想重定向到另一个页面或路由到另一个页面 <IonCardContent className={classes.cardContent}> <IonButton id="present-alert" routerDirection="back" className={`${classes.approveBtn}`} onClick={() => showAlert()}> Approve </IonButton> <IonButton id="present-alert" routerDirection="back" onClick={() => showAlert()} > Reject </IonButton> <IonAlert isOpen={alert} trigger="present-alert" header="Are you sure?" className="custom-alert" onDidDismiss={() => showAlert()} buttons={[ { text: 'No', cssClass: 'alert-button-cancel', }, { text: 'Yes', cssClass: 'alert-button-confirm', handler:()=> { <Redirect to="/admin/orders/requests" /> } } ]} ></IonAlert> </IonCardContent> <IonAlert header="Alert!" trigger="present-alert" buttons={[ { text: 'Cancel', role: 'cancel', handler: () => { console.log('Alert canceled'); }, }, { text: 'OK', role: 'confirm', handler: () => { console.log('Alert confirmed');/// ==> DO ROUTING CALLS HERE }, }, ]} onDidDismiss={({ detail }) => console.log(`Dismissed with role: ${detail.role}`)} ></IonAlert> 您可以使用警报按钮来做到这一点

回答 1 投票 0

@Capacitor/应用程序启动器打开网页而不是应用程序

我在我的 ionic cordova 项目中安装了 @capacitor/app-launcher,因为在将 Angular 版本升级到 16 后,@ionic-native/app-launcher 不再可用。 我通过尝试打开来测试插件

回答 1 投票 0

PWA 可以访问 NFC 芯片吗

我刚刚开始一个新项目,客户想要使用 Vue.js 开发移动应用程序。 我需要在 Ionic Vue 应用程序和使用 Vue.js 的 PWA 之间做出选择。 我需要访问

回答 2 投票 0

如何为自定义(普通 Javascript)Ionic 应用程序设置“构建”脚本?

我是一名技术老师,我正在为高中生设计一门编码课程。 我想教他们 Ionic,而不必教他们 React、Angular 或 Vue。 他们已经了解基本的网络

回答 3 投票 0

@HostListener keydown 事件不会在 Ionic 角度的整个页面上触发

我想捕获整个应用程序的按键事件(特别是使用箭头键导航) 这在任何子组件上都可以正常工作,但菜单或根或标题级别的东西不起作用。所以...

回答 2 投票 0

尝试使用 ionic 运行项目时出错

我使用 git clone 克隆了一个存储库并将其下载到我的计算机上,我使用了 npm install 命令,它安装了一些东西,但带有消息 npm WARN 已弃用”,最后它...

回答 2 投票 0

如何在开发模式下运行`ionic build`?

我正在使用带有 Vuejs 的 Ionic Framework v5(使用 ionic start 创建)。 它以生产模式构建,但我想以开发模式构建。 我用 ionic build 构建,它输出: > vue-cli-se...

回答 4 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.