${...} 语法在 Angular 中是什么意思?花括号前的货币符号?
What does ${...} syntax mean in Angular? The money symbol prepending curly braces?
我似乎无法在 Angular 中找到以下语法的含义(或者可能只是 Javascript):
name() {
return ${this.firstName} ${this.lastName};
}
特别是 ${...}?
它是 Angular 还是只是 Javascript?
-谢谢
这些被称为 Template literals 允许您基本上将表达式注入多行字符串而无需任何混乱的连接,但您必须将它们括在反引号中。
name() {
return `${this.firstName} ${this.lastName}`;
// as opposed to this.firstName + ' ' + this.lastName
}
我似乎无法在 Angular 中找到以下语法的含义(或者可能只是 Javascript):
name() {
return ${this.firstName} ${this.lastName};
}
特别是 ${...}?
它是 Angular 还是只是 Javascript?
-谢谢
这些被称为 Template literals 允许您基本上将表达式注入多行字符串而无需任何混乱的连接,但您必须将它们括在反引号中。
name() {
return `${this.firstName} ${this.lastName}`;
// as opposed to this.firstName + ' ' + this.lastName
}