肇庆网站建设方案维护,流行的wordpress主题,搜索引擎营销方式,用python做网站的步骤做了一个列表的h5页面#xff0c;通过点击列表跳转到外部链接#xff0c;然后返回是回到原来页面状态#xff0c;类似缓存。发现在ios端返回后#xff0c;vue 的mounted() 、create()、路由监听等方法都不会执行。在安卓和pc 端都能正常调用。
解决方案#xff1a;监听pa…做了一个列表的h5页面通过点击列表跳转到外部链接然后返回是回到原来页面状态类似缓存。发现在ios端返回后vue 的mounted() 、create()、路由监听等方法都不会执行。在安卓和pc 端都能正常调用。
解决方案监听pageshow
mounted(){const isiOS !!u.match(/\(i[^;];( U;)? CPU.Mac OS X/); // ios终端if(isiOS) {window.addEventListener(pageshow, () {//回退到vue应用执行的操作this.init();});} else {this.init();}
},
pageshowMDN
当一条会话历史记录被执行的时候将会触发页面显示 (pageshow) 事件。(这包括了后退/前进按钮操作同时也会在 onload 事件触发后初始化页面时触发)。
属性
PropertyTypeDescriptiontarget 只读EventTargetThe event target (the topmost target in the DOM tree).type 只读DOMStringThe type of event.bubbles 只读BooleanWhether the event normally bubbles or not.cancelable 只读BooleanWhether the event is cancellable or not.persisted 只读boolean表示网页是否是来自缓存。