Javascript – js-Problem mit eckigen Klammern
高洛峰
高洛峰 2017-05-16 13:42:12
0
2
652
import {INCREMENT} from "./types"

const mutations = {
    [INCREMENT] (state) {
      state.count++;
    }
}

[INCREMENT] INCREMENT ist eine Variable, die direkt verwendet werden kann. Warum müssen wir eine Klammer hinzufügen?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

Antworte allen(2)
黄舟

[INCREMENT]是计算INCREMENT这个变量的值作为函数名,不使用中括号是把INCREMENT这个字符串作为函数名。

const INCREMENT = 'myfunc';

const mutations = {
    [INCREMENT] (state) {
      state.count++;
    }
}

相当于上面的代码,结果是

const mutations = {
    myfunc(state) {
      state.count++;
    }
}

const INCREMENT = 'myfunc';
const mutations = {
    INCREMENT (state) {
      state.count++;
    }
}

的结果是

const mutations = {
    INCREMENT(state) {
      state.count++;
    }
}
phpcn_u1582

这是 computed property names

https://developer.mozilla.org...

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage