0
を働いていない:Framework7ナビゲーションは、私は私の-app.jsでこれを持って
var myApp = new Framework7({
closeByOutsideClick : true,
init: false
});
var $$ = Dom7;
// Add view
var mainView = myApp.addView('.view-main');
function avvia(info) {
$.ajax({
type: "POST",
contentType: "application/json",
//data: {info : info},
data : JSON.stringify(info),
timeout: 6000,
url: "http://localhost:8180/api/",
success: function(data){
urlRedirect = data.urlRedirect;
//window.location.href = urlRedirect;
mainView.router.loadPage(urlRedirect);
},
beforeSend: function() {
myApp.showPreloader('Loading...');
},
complete: function(data) {
myApp.hidePreloader();
},
error: function (xhr, status, error) {
// executed if something went wrong during call
myApp.alert(error, ' Error');
//if (xhr.status > 0) alert('got error: ' + status); // status 0 - when load is interrupted
}
});
}
myApp.init();
私のAJAX呼び出しの後、私は成功した場合にはデータフィールドとして返される新しいページにページをリダイレクトしたいと思います。 私の問題は、標準window.location.href = urlRedirect;
がうまくいきますが、Framework7のナビゲーションmainView.router.loadPage(urlRedirect)
が機能していないことです。どうすればそれを解決できますか?