是否可以使用此编码重定向searchusers.html?
myApp.onPageInit('home', function (page) {
$$.ajax({
type: 'GET',
url: "http://localhost/some.php?name="+window.localStorage.getItem('key'),
cache : false,
async: false,
dataType: "JSON",
success:function(data){
if (data == "nooneinfollowinglist") {
mainView.router.loadPage('searchusers.html');
}
}
});
答案 0 :(得分:1)
我知道无法以这种方式重定向。仅使用事件我们可以像这样重定向页面:
myApp.alert('nobody',function(){
mainView.router.loadPage('searchusers.html');
});