我有以下控制器:
Whistlr.OrganizationController = Ember.ObjectController.extend
location: (->
location = this.city+", "+this.country
return location
)
这在我的模板中:
{{location}}
但是,ember 不会渲染诸如“New York, USA”之类的字符串,而是渲染:
function () { var location; location = this.city + ", " + this.country; return location; }
我在这里做错了什么?