我一直在尝试关注视频:http://www.telerik.com/videos/platform/building-mobile-apps-using-telerik-platform---part-i
根据教程,在todos页面(主页面)中,当我点击抽屉图标/按钮时,抽屉页面应显示出来。
但是,我的抽屉无法打开 - 在Chrome调试器中,我一直收到此错误:"未捕获的TypeError:无法读取属性' openFor'未定义"当我点击抽屉图标。有帮助吗?
我正在使用浏览器内的客户端。
新todo的popup / modal正在发生同样的事情。
我的代码如下所示:todos.html:
<div data-role="view" id="todos" data-model="APP.todos.model" data-init="APP.todos.events.init" data-after-show="APP.todos.events.afterShow">
<header data-role="header">
<div data-role="navbar">
<a data-role="button" data-rel="drawer" href="#categories" data-icon="drawer-button" data-align="left"></a>
<span data-role="view-title"></span>
<a data-role="button" data-rel="modalview" href="#newTodo" data-align="right" data-icon="compose"></a>
</div>
</header>
<ul data-role="listview" data-style="inset" data-bind="source: todos" data-template="todos-template" data-pull-to-refresh="true"></ul>
</div>
<script type="text/x-kendo-template" id="todos-template">
#: title #<a class="todo-close" data-bind="click: removeTodo"><i class="fa fa-check-square-o fa-lg"></i></a>
</script>
categories.html代码:
<div data-role="drawer" id="categories" style="width: 270px" data-model="APP.categories.model" data-before-show="APP.categories.events.beforeShow" data-views="['todos']" class="">
<div class="km-group-title">Categories</div>
<ul data-role="listview" data-bind="source: categories" data-template="categories-template"></ul>
<a data-role="button" data-icon="compose" class="full" data-rel="modalview" href="#newCategory">New</a>
</div>
<script type="text/x-kendo-template" id="categories-template">
<a data-bind="click: onCategorySelect">#: name #</a>
</script>
答案 0 :(得分:0)
我发现了问题所在:视频教程根本没有提到这一点 - 在app.js中 - 我需要在require子句中包含所有新视图,例如:
require([
'views/todos/todos',
'views/categories/categories',
'views/newTodo/newTodo',
'views/newCategory/newCategory'
]