我开始使用EmberJS,跟随Screencast。我试图在没有ember-data的情况下做TODO应用程序。 以下是我的HTML
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ember.js • TodoMVC</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script type="text/x-handlebars" data-template-name="todos">
<section id="todoapp">
<header id="header">
<h1>todos</h1>
{{input type="text" id="new-todo" placeholder="What needs to be done?" value=newTitle action="createTodo"}}
</header>
<section id="main">
<ul id="todo-list">
{{#each}}
<li {{bind-attr class="isCompleted:completed"}}>
<input type="checkbox" class="toggle">
<label>{{title}}</label><button class="destroy"></button>
</li>
{{/each}}
</ul>
<input type="checkbox" id="toggle-all">
</section>
<footer id="footer">
<span id="todo-count">
<strong>2</strong> todos left
</span>
<ul id="filters">
<li>
<a href="all" class="selected">All</a>
</li>
<li>
<a href="active">Active</a>
</li>
<li>
<a href="completed">Completed</a>
</li>
</ul>
<button id="clear-completed">
Clear completed (1)
</button>
</footer>
</section>
<footer id="info">
<p>Double-click to edit a todo</p>
</footer>
</script>
<script type="text/javascript" src="js/jquery-1.11.0.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/handlebars-v1.3.0.js"></script>
</script><script type="text/javascript" src="js/ember.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>
javascript - 全部在一个地方。
window.Todos = Ember.Application.create();
Todos.Router.map(function () {
this.resource('todos', { path: '/' });
});
Todos.TodosController = Ember.ArrayController.extend({
actions:{
createTodo: function(){
var title = this.get('newTitle');
if(!title.trim()){return;}
todos.push({
id: todos[todos.length-1].id +1,
title: title,
isCompleted: false
});
this.set('newTitle','');
}
}
});
Todos.TodosRoute = Ember.Route.extend({
model: function(){
return todos;
}
});
var todos=[{
id: 1,
title: 'Learn Ember.js',
isCompleted: true
},
{
id: 2,
title: '...',
isCompleted: false
},
{
id: 3,
title: 'Profit!',
isCompleted: false
}];
问题是当我尝试添加新的todo条目时,它不会在添加的UI中显示,而是在控制台上键入todos
时。
我看到新条目已被添加。为什么模型被更改但UI中没有显示?
我还注意到todos数组中的新条目没有其他对象所具有的getTitle
,setTitle
,get isCompleted
,set isCompleted
等方法 - 这使得我我想我绝对不会错过任何东西。
似乎我需要掌握TodosRoute的模型并添加它,如果这是我需要做的。
我该怎么做?
答案 0 :(得分:1)
您必须使用todos.pushObject()
而非简单array.push()
。
简短说明:“将对象推到数组的末尾。就像push()一样,但它符合KVO标准。” http://emberjs.com/api/classes/Ember.MutableArray.html#method_pushObject
稍长一点的解释:虽然Ember默认扩展JS对象(如数组)以使它们在Emberland中成为更好的公民,但它不会覆盖现有方法,如push()
。这就是为什么你需要使用一个单独的方法(pushObject
) - 它是Ember的解决方案,使数据绑定在数组JS对象上工作。
对于普通的JS对象几乎一样:Ember有Ember.Object
,has some methods of it's own,当你需要的只是经典的JS对象时,它们是不需要的。这并不意味着每次都必须使用Ember.Object
,在这种情况下,Ember足够聪明,可以根据您从Handlebars模板访问的属性为您设置数据绑定。