我一直在移植我的骨干应用程序,使用jqMobi和jqUI作为界面。
最初,我没有从我的骨干路由器得到任何东西,我甚至无法输出到控制台,路线被完全忽略。
我将backbone.init()
函数移动到ui.js init
函数中,现在触发了路由,但是我得到了错误
Uncaught TypeError: Cannot read property 'style' of undefined Uncaught TypeError: Cannot read property 'title' of undefined
来自这条路线
edit: function(id){ alert('triggered'); $.ui.setTitle('temp title'); $.ui.loadContent('edit',false,false,'slide'); new MyApp.Views.EditUser(id); },
答案 0 :(得分:0)
$.ui.loadContent('edi',false,false,'slide');
“edi”是您正在尝试加载的面板的正确ID吗?