作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近正在使用 framework7 构建一个应用程序。我的应用程序包含一个 html 文件,其中包含所有 View 。要在 View 之间导航,页面底部有一个后退按钮。
对于后退按钮,我正在使用代码
var myView = app.view.current;
myView.router.back();
如果我在 Android 设备上按下后退按钮,应用程序将关闭
如何使用安卓手机的后退键回到主页面。
I have use pushState:true but it doesnt work for me.
下面是我的 app.js 文件
// Dom7
var $ = Dom7;
// Theme
var theme = 'auto';
if (document.location.search.indexOf('theme=') >= 0) {
theme = document.location.search.split('theme=')[1].split('&')[0];
}
// Init App
var app = new Framework7({
id: 'io.framework7.testapp',
root: '#app',
theme: theme,
on:{
pageInit : function(page){
console.log("page init function called aakash");
document.addEventListener("backbutton", app.methods.onBackKeyDown,
false);
}
},
pushState:true,
data: function () {
return {
user: {
firstName: 'John',
lastName: 'Doe',
},
};
},
methods: {
helloWorld: function () {
console.log('dfvdfv')
app.dialog.alert('Hello World!');
},
onDeviceReady: function() {
},
onBackKeyDown: function() {
console.log("back button pressed");
}
},
routes: routes,
vi: {
placementId: 'pltd4o7ibb9rc653x14',
},
});
最佳答案
好吧,我有办法了!!这对我有用
var app = new Framework7({
initOnDeviceReady:true,
view:{
pushState:true,
}
});
关于html-framework-7 - 如何在framework7中检测android的后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55061206/
我是一名优秀的程序员,十分优秀!