ここに簡単な例があります
MyApp.ApplicationController = Ember.Controller.extend({
content: "some @user",
parsedContent: function() {
return this.get("content").replace("@user", "<a {{action gotoUser 'user'}}>user</a>");
}.property("content")
});
どちらが出力されますか
some @user
some <a {{action gotoUser 'user'}}>user</a>
コンテンツをハンドルバー テンプレートとして解釈する代わりに。このマニュアルをコンパイルする必要があると思いますが、正しいコンテキストを渡す方法がわかりません。