0
有沒有什麼方法可以動態綁定aurelia中的值?Aurelia中的動態綁定/綁定路徑
test.js
export class test{
constructor(){
var self = this;
self.what='firstname';
self.firstname = 'John';
self.lastname = 'Doe';
}
}
的test.html
<template>
Input <input type="text" value.bind="what" />
output: <input type="text" value.bind="${what}" />
</template>
---不工作
我想實現的是:
如果我寫輸入中的'firstname',它會顯示'約翰'在輸出。
如果我在輸入中輸入'姓',它會在輸出中顯示'Doe'。
當我們需要綁定路徑是動態的時候,這可能是需要的。
非常感謝。當我們需要綁定路徑是動態的時候,這會很有用。 – Tuhin
如果這是解決你的問題,請接受它作爲正確的答案 –
那麼..這是相當漂亮.. –