App.Post = Em.Object.extend({
content: null
});
App.Post.reopenClass({
getLink: function() {
console.log("test");
}.property('content')
});
----template clip----
{{#each this}}
{{getLink}}
{{content}}
{{/each}}
getLink 没有在我的模板中被调用。为什么是这样?