我正在使用JSery的ONSEN UI,但是它在控制台日志中产生了无限的错误循环。错误是对未找到的图像进行简单加载,但问题是:它试图像无限循环一样加载无限时间。
如果我评论此代码,循环停止,但我需要它。
module.controller('PageController', function($scope) {
ons.ready(function() {
// Init code here
});
});
答案 0 :(得分:0)
(function(){
ons.bootstrap('MyAppName', ['onsen'])
.controller('PageController', function($scope) {
//My Init Code Goes Here
});
})();