您现在的位置是:首页 > 诗句大全

uniapp的APP中使用webview的返回的问题

作者:欧阳逸时间:2024-05-05 13:01:37分类:诗句大全

简介  文章浏览阅读1.1k次。在使用uniapp开发APP中很多时候使用webview内嵌网页,_uniapp webview 返回键

点击全文阅读

在使用uniapp开发APP中很多时候使用webview内嵌网页,
在网页中点击多次跳转后,想点击上方的返回按钮返APP的上一页或上几页的实现方法:

<template><view><web-view v-if="newurl" :src="newurl" ></web-view></view></template><script>export default {data() {return {newurl:''}},onBackPress(e) {//响应返回事件if (e.from === 'navigateBack') {  //这个地方必须要有的,否则会死循环return false;  } console.log('点击返回....');let pages = getCurrentPages()let page = pages[pages.length - 1];let currentPages = page.$getAppWebview()currentPages.close()uni.navigateBack({delta:2})return true;},onShow() {},onLoad(opts) {this.newurl = "https://www.xxx.com/index'},methods: {}}</script><style>page{background-color: #FFF;}</style>

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

我来说两句