javascript - Bagaimana untuk memperkenalkan berbilang eksport apabila terdapat berbilang eksport dalam js?
伊谢尔伦
伊谢尔伦 2017-05-19 10:11:30
0
7
747
// mutation-types.js
export const SOME_MUTATION = 'SOME_MUTATION'
export const SOME_MUTATION_1 = 'SOME_MUTATION_1'

Saya ingin mengimport mutation-types.js, bagaimana untuk menulisnya dengan lebih baik?

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

membalas semua(7)
大家讲道理
import * as types from 'mutation-types.js'
// types.SOME_MUTATION types.SOME_MUTATION_1
習慣沉默
import * as TYPES from './mutation-types';

console.log(TYPES.SOME_MUTATION)
PHPzhong
如果你想全部导入:
import * as mutationTypes from './mutation-types';
如果你只是想导入 mutation-types里的几个可以:

import {SOME_MUTATION,SOME_MUTATION_1} from './mutation-types';
左手右手慢动作

Anda boleh meletakkan SOME_MUTATION dan SOME_MUTATION_1 dalam objek eksport:

let obj = {
    SOME_MUTATION : 'SOME_MUTATION',
    SOME_MUTATION_1 : 'SOME_MUTATION_1'
}

export obj
左手右手慢动作

http://es6.ruanyifeng.com/#do...

给我你的怀抱

Perkenalkan
import * sebagai jenis dari '../../mutation-types';
Gunakan
types.SOME_MUTATION
types.SOME_MUTATION_1

漂亮男人
import * as types from './types';

Kemudian gunakan jenis[nama eksport] untuk digunakan

Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan