javascript - js中括號問題
高洛峰
高洛峰 2017-05-16 13:42:12
0
2
602
import {INCREMENT} from "./types"

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

[INCREMENT] INCREMENT是變數直接使用不就行了嗎,為什麼還要加一個中括號呢?

高洛峰
高洛峰

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

全部回覆(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...

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!