1
你好,我有一個小的問題: 你在AngularJS的ui-router中加載視圖後如何清除緩存。 請幫我AngularJS:如何在ui-router中加載視圖後清除緩存?
你好,我有一個小的問題: 你在AngularJS的ui-router中加載視圖後如何清除緩存。 請幫我AngularJS:如何在ui-router中加載視圖後清除緩存?
試試這個,
app.run(function($rootScope, $templateCache) {
$rootScope.$on('$routeChangeStart', function(event, next, current) {
if (typeof(current) !== 'undefined'){
$templateCache.remove(current.templateUrl);
}
});
});
感謝答覆,我有一個噴氣問題如何加載後重新加載當前視圖它 – Kaker