0
このコーディングでsearchusers.htmlをリダイレクトすることはできますか?mainView.router.loadPageがAjaxで正常に動作しない
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');
}
}
});