類似於這種引入多個模組,如何簡化成一句,例如
import {A,B,C,D} from {'a.js' ,'b.js'.....}
欧阳克2017-06-12 09:24:00
在../img/new
下建立 index.js
import img1 from './banner.png'
...
module.exports = {
img1,
...
}
就可以這麼引用了
import { img1, img2 ... } from '../img/new';
学习ing2017-06-12 09:24:00
如果用的是webpack可以這樣寫
const context = require.context('../img/new/', true, /\.(html)$/);
context.keys().forEach((filename) => {
console.log(filename, context(filename));
});