を機能させるバインディング私はそのような何かに見える機能に結合している:角度JS -
function func() {
this.scopeVar = {
bla: this.isolateScopeVar.bla,
gla: this.isolateScopeVar.gla
}
}
私は、このHTMLコードを持っている:
<span>{{this.scopeVar.bla}}</span>
<span>{{this.scopeVar.gla}}</span>
私の問題はthis.isolateScopeVar.bla
またはthis.isolateScopeVar.gla
がある場合ということですspan
はfunc
というトリガーなしで更新されませんでした。
私は動作します。この方法で使用することができます:
function func() {
return {
bla: this.isolateScopeVar.bla,
gla: this.isolateScopeVar.gla
}
}
<span>{{this.func().bla}}</span>
<span>{{this.func().gla}}</span>
をしかし、私は、これはそれを行うための最善の方法ではないと思われます。
これを正しく行う方法は他にありますか?
のですか? 'this.isolateScopeVar.bla'は動作していませんか? – Zooly
^もしあなたが 'this.'を持っているなら、どんな構文が使われますか? –