mainView.router.loadPage无法在ajax中成功运行

时间:2016-08-18 13:30:52

标签: html-framework-7

是否可以使用此编码重定向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');
        }
    }
});

1 个答案:

答案 0 :(得分:1)

我知道无法以这种方式重定向。仅使用事件我们可以像这样重定向页面:

myApp.alert('nobody',function(){
    mainView.router.loadPage('searchusers.html');
});