この例では: http://jsfiddle.net/stephane_klein/Cgn2c/1/
「App.my_list2」に「仮想」配列を作成したいと思います。
コードが機能しません。修正するにはどうすればよいですか? 私の問題は何ですか?
ご協力いただきありがとうございます。
よろしく、ステファン
この例では: http://jsfiddle.net/stephane_klein/Cgn2c/1/
「App.my_list2」に「仮想」配列を作成したいと思います。
コードが機能しません。修正するにはどうすればよいですか? 私の問題は何ですか?
ご協力いただきありがとうございます。
よろしく、ステファン
It looks like all that's required is to set the content property to anything (even just an empty array will do). See here: http://jsfiddle.net/Cgn2c/2/
App.my_list2 = Ember.ArrayProxy.create({
// the content propery is required, even if it's not used
content: [],
length: 8,
objectAtContent: function(idx) {
return "foobar";
}
});
<script type="text/x-handlebars">
{{#each App.my_list2}}
{{ this }}
{{/each}}
</script>
foobar foobar foobar foobar foobar foobar foobar foobar