这是Polymer 1.x文档中的拼写错误:$ {foo}?

时间:2016-07-16 16:34:07

标签: data-binding syntax polymer polymer-1.0

The third paragraph of this page of Polymer documentation reads this

/users/${userId}/notes/${noteId}

上面的段落是:

/users/{{userId}}/notes/{{noteId}}

我从未见过${foo}之前的第一个语法用于数据绑定。这是对的吗?或者这是一个错字?

The data bindings documentation here,请勿提及该语法。它表明正确的语法应该看起来像{{foo}}

/users/${userId}/notes/${noteId}也正确吗?这是什么意思吗?或者它只是文档中的拼写错误?

1 个答案:

答案 0 :(得分:1)

/users/${userId}/notes/${noteId}

是JavaScript字符串插值。见https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Template_literals

/users/{{userId}}/notes/{{noteId}}

聚合物结合表达