调用函数的href属性的bind-attr弃用是什么?

时间:2015-07-15 06:09:33

标签: javascript ember.js

好的,我的链接标记的bind-attr属性为href。该属性指向从应用程序控制器中的计算属性返回的链接。这里如何应用弃用?

控制台错误 - >

  

未捕获错误:断言失败:设置模板绑定时发生错误。请检查HTML注释中的无效标记或绑定<​​/ p>

实际代码(有效):

<a {{bind-attr href="computed_prop_name"}} target="_blank"> Some text</a>

我试过了:

<a href="{{computed_prop_name}}" target="_blank"> Some text</a>

在应用程序控制器computed_prop_name中是一个计算属性,它根据参数检查参数并返回两个链接之一。

func_name: function () {
  var url = isTrue ? "https://example.org/one":"https://example.org/two",
  return url + "/details";
}.property()

0 个答案:

没有答案