1
假設我想修改Ember.js示例todo app
中的視圖以調整大小。向Ember視圖添加JQuery UI選項
jQuery代碼要做到這一點是:
$("#container").resizable()
其中的#container代表一個div。我不確定此代碼段所屬的應用程序結構中的位置。它是否進入app.js?內容如下所列,我不知道哪種方法把上面的代碼中是最合適的。
Todos = Ember.Application.create();
Todos.Todo = Ember.Object.extend({
title: null,
isDone: false
});
Todos.todosController = Ember.ArrayController.create({
content: [],
createTodo: function(title) {
var todo = Todos.Todo.create({ title: title });
this.pushObject(todo);
},
clearCompletedTodos: function() {
this.filterProperty('isDone', true).forEach(this.removeObject, this);
},
remaining: function() {
return this.filterProperty('isDone', false).get('length');
}.property('@each.isDone'),
isEmpty: function() {
return this.get('length') === 0;
}.property('length'),
allAreDone: function(key, value) {
if (arguments.length === 2) {
this.setEach('isDone', value);
return value;
} else {
return !this.get('isEmpty') && this.everyProperty('isDone', true);
}
}.property('@each.isDone')
});
Todos.CreateTodoView = Ember.TextField.extend({
insertNewline: function() {
var value = this.get('value');
if (value) {
Todos.todosController.createTodo(value);
this.set('value', '');
}
}
});
Todos.MainView = Ember.View.extend({
templateName: 'main_view'
});
這並不適用於我,當我將此更改應用到待辦事項源時,部分視圖不呈現。 –