我有多个json文件,想要将它们转换为一个简单的json文件并使用json-loader
来要求它,如下所示:
import dictionary from './distFile.json';
例:
的 file1.json
{a:"b"}
的 file2.json
{B:""}
distFile.json 应为:
{a:"b",b:"a"}
我该怎么做?
或者无论如何都要这样做:
import dictionary from ['./file1.json','./file2.json'];
??
答案 0 :(得分:2)
制作需要两个文件的第三个文件。
<强> combined.js 强>
import file1 from './file1.json';
import file2 from './file2.json';
export default { ...file1, ...file2 };
然后只需导入该文件:
import combinedJson from './combined.js'