是否存在與Angular 1的$ interpolate相當的Angular 2?我想要一個字符串和一個對象,並能夠用對象中的值替換字符串中的標記。
例如:
let myTemplateStr = "Hello {{user.name}}, you are {{user.age.years}} years old"
//use the Angular2 equivalent of interpolate
let myTemplateCompiled = Angular2.Interpolate(myTemplateStr, {
user: {
name: "bob",
age: {
years: 10
}
}})
//myTemplateCompiled ends up becoming "Hello bob, you are 10 years old"
我可以寫的東西會爲我做到這一點,但我更願意使用一個內置的角度的方式,如果可能的。
編輯:
我應該提到的是,插值需要能夠與字符串變量發生。我知道typescript/es6對文字字符串有反向插值,但是我需要插入存儲在變量中的字符串模板。也許有一種方法可以在我不知道的變量中使用爲插入字符串模板插入內置的typescript?
嗨,感謝您的回答,我忘了提,我需要插值從發生變量。我現在添加了一個編輯解釋。也許有一種方法可以使用變量進行打字稿插值? – tt9