我问过这个问题的变体here。但基本上我需要创建一个在hasMany关联上运行的计算属性。我需要做类似于javascript sort函数的排序;在哪里我可以做像
这样的事情files = ["File 5", "File 1", "File 3", "File 2"];
files.sort(function(a,b){
return parseInt(b.split(' ').pop()) - parseInt(a.split(' ').pop())
});
结果:
["File 5", "File 3", "File 2", "File 1"]
这是我的jsbin: http://emberjs.jsbin.com/simayexose/edit?html,js,output
非常感谢任何帮助。
注意: 我的jsbin目前无法正常工作(出于此问题的其他原因)。我发布了一个关于here的问题。我只是不想回答这个问题。
谢谢@engma。我实施了这些说明。事实上,我复制并粘贴了发布的内容。这是新的jsbin。 http://emberjs.jsbin.com/roqixemuyi/1/edit?html,js,output
但是,我仍然没有得到任何排序。即使它确实如此,它仍然不会按照我希望的方式排序。我需要以下内容:(以下是我尝试在我的代码中实现此错误时得到的错误,而不是来自jsbin,因为我无法使jsbin工作)
sortedFiles: function(){
return this.get('files').sort(function(a,b){
return parseInt(b.split(' ').pop()) - parseInt(a.split(' ').pop());
});
}.property('files.@each.name')
当我这样做时,我收到以下错误:
Uncaught TypeError: this.get(...).sort is not a function
因为this.get('files')
返回一个承诺,我想我会尝试这个;
sortedFiles: function(){
return this.get('files').then(function(files){
return files.sort(function(a,b){
return parseInt(b.split(' ').pop()) - parseInt(a.split(' ').pop());
});
});
}.property('files.@each.name')
但后来我收到以下错误:
Uncaught Error: Assertion Failed: The value that #each loops over must be an Array. You passed {_id: 243, _label: undefined, _state: undefined, _result: undefined, _subscribers: }
BTW,我正在使用emberjs v1.11.0
而且,我使用的sort是ember-cli/node_modules/bower-config/node_modules/mout/array/sortBy.js
以下是代码
var sort = require('./sort');
var makeIterator = require('../function/makeIterator_');
/*
* Sort array by the result of the callback
*/
function sortBy(arr, callback, context){
callback = makeIterator(callback, context);
return sort(arr, function(a, b) {
a = callback(a);
b = callback(b);
return (a < b) ? -1 : ((a > b) ? 1 : 0);
});
}
module.exports = sortBy;
所以回答问题如何做一个Emberjs高级排序hasMany关联作为计算属性;我不得不改变
this.get('files').sort(function(a,b){
...
});
return this.get('files').toArray().sort(function(a,b){
...
});
这允许我使用javascript排序并返回所需的排序对象。
答案 0 :(得分:2)
好的,首先你的JSBin有很多问题,所以我们一个接一个地抛出它们
1-你没有包含任何Ember-Data构建,所以我包括1,这是固定装置和模型所需要的
<script src="http://builds.emberjs.com/tags/v1.0.0-beta.15/ember-data.js"></script>
2-你的脚本
var App = window.App = Ember.Application.create({
});
//First this is how to register the adapter
App.ApplicationAdapter = DS.FixtureAdapter.extend({});
App.IndexRoute = Ember.Route.extend({
model: function() {
//Second with find you pass in the ID so I am using 1
//if you want to get all folders use findAll()
return this.store.find('folder',1);
}
});
App.IndexController = Ember.Controller.extend({
});
App.Router.map(function() {
});
App.Folder = DS.Model.extend({
name: DS.attr('string'),
files: DS.hasMany('file',{async:true}),
sortedFiles: function(){
//Sorty By has no second parameter, if you need more sorting power, do it your self
return this.get('files').sortBy('name');
}.property('files.@each.name')
});
App.File = DS.Model.extend({
name: DS.attr('string'),
folder: DS.belongsTo('folder',{async:true})
});
App.File.FIXTURES = [
{
id: 1,
name: 'File 5',
folder:1
},
{
id: 2,
name: 'File 1',
folder:1
},
{
id: 3,
name: 'File 3',
folder:1
},
{
id: 4,
name: 'File 2',
folder:2
},
{
id: 5,
name: 'File 6',
folder:2
},
{
id: 6,
name: 'File 4',
folder:2
}
];
App.Folder.FIXTURES = [
{
id: 1,
name: 'Folder 1',
files:[1,2,3]
},
{
id: 2,
name: 'Folder 2',
files:[4,5,6]
}
];
你的模板:
<div>
Folders: <br>
<ul>
<li>
Name: {{model.name}} <br>
Files:
{{!-- here we access the sorted files property in the model--}}
{{#each file in model.sortedFiles}}
{{file.name}} <br/>
{{/each}}
</li>
</ul>
</div>