如何在nativescript vue中处理webview上的android后退按钮
Posted
技术标签:
【中文标题】如何在nativescript vue中处理webview上的android后退按钮【英文标题】:How to handle android back button on webview in nativescript vue 【发布时间】:2020-02-17 13:05:21 【问题描述】:所以在 nativescript-vue 中,我有一个 webview,用户可以浏览其中的页面。但是当他们按下物理后退按钮时,应用程序会退出,而不是返回到 webview 上的上一页。
<WebViewExt :src="webviewLink" builtInZoomControls="false" displayZoomControls="false" />
我们该如何处理?
【问题讨论】:
【参考方案1】:自己解决了。
首先,将其添加到脚本的顶部:
const application = require("tns-core-modules/application");
然后在您的 mounted 函数中检查后退按钮活动。
if (application.android)
application.android.on(application.AndroidApplication.activityBackPressedEvent, function (args)
console.log("Event: " + args.eventName + ", Activity: " + args.activity);
Set args.cancel = true; // to cancel back navigation and do something custom.
);
更多信息在这里:https://docs.nativescript.org/core-concepts/application-lifecycle
【讨论】:
以上是关于如何在nativescript vue中处理webview上的android后退按钮的主要内容,如果未能解决你的问题,请参考以下文章
vue js nativescript firebase web 应用到 android/ios 应用
如何在 Nativescript-Vue 中使用 nativescript-drawingpad?
如何根据 nativescript vue 中的道具值过滤数组?