使用 ember.js 我有一个输入:
{{input id="my_input" name="my_input" type="text"}}
然后我想创建一个链接,使用linkTo
,但希望输入的值成为 href 的一部分。像这样:
{{#linkTo 'my_resource' my_input}}the link{{/linkTo}}
我有这样定义的资源:
App.Router.map(function() {
this.resource("my_resource", {path: ":my_input"});
});
那可能吗?
谢谢。