类似于这种引入多个模块,如何简化成一句,比如
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));
});