如何在app.run(function(){})中暫停執行整個應用程序?暫停執行angularjs應用程序
例如:
angular.module('frontendApp')
.run(function ($timeout) {
$timeout(function() {
next(); // While this function is not executed,
// the application must not download data and perform any task.
}, 1000);
});
什麼是你的使用情況? –
我不知道該怎麼做=) –