标签: javascript angular typescript
简短版:
如何在PHP中使用$$a,但在angular2?
长版:
我有2个const变量const foo = 'string'和const bar = 'string2'
const
const foo = 'string'
const bar = 'string2'
1变量foo2 = 'foo'
foo2 = 'foo'
是否可以调用类似this.{{foo2}}的内容,结果为'string'?
this.{{foo2}}
'string'
我知道PHP可能会$$a。
答案 0 :(得分:2)
只需使用括号表示法:
{{ this[foo2] }}
Example