当前位置:  开发笔记 > 编程语言 > 正文

在ember计算属性中使用反引号

如何解决《在ember计算属性中使用反引号》经验,为你挑选了0个好方法。

指南显示用反引号编写的计算属性.我不确定他们是否有必要.

可以这样:

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');
})

对我来说,这不那么模糊.每种方法的优点/缺点是什么?

推荐阅读
mobiledu2402851173
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有