我在 html 模板中遇到问题。我想调用一个函数并将一个参数传递给函数。该参数是组件类中的一个属性。我怎么能在函数调用中绑定这个属性。我尝试了不同的选择,但未能成功。
1.
<input type="button" class='Button' value='Back'
(click)="showGrid('{{"./app/setup/" + url}}')" />
2.
<input type="button" class='Button' value='Back'
(click)="showGrid('./app/setup/ + {{url}}')" />
在组件中使用 Getter。
获取 myUrl = function(){ return "./app/setup/" + ${this.Url} }
在 html 中,
<input type="button" class='Button' value='Back'
(click)="showGrid('{{myUrl}}')" />
如何在函数调用中绑定属性。请建议。
谢谢,