指南显示用反引号编写的计算属性.我不确定他们是否有必要.
可以这样:
fullName: Ember.computed('firstName', 'lastName', function() { return `${this.get('firstName')} ${this.get('lastName')}`; })
被改写为:
fullName: Ember.computed('firstName', 'lastName', function() { return this.get('firstName') + ' ' + this.get('lastName'); })
?
对我来说,这不那么模糊.每种方法的优点/缺点是什么?