使用JSON文件作为JS对象,而不将其导入到webpack编译的代码中,可以通过以下步骤实现:
{
"name": "John",
"age": 25,
"email": "john@example.com"
}
fetch('data.json')
.then(response => response.json())
.then(data => {
// 在这里可以使用data作为JS对象
console.log(data.name); // 输出:John
});
这种方法可以避免将JSON文件直接导入到webpack编译的代码中,而是在运行时动态加载JSON数据。这在需要根据不同情况加载不同数据的场景中非常有用。
领取专属 10元无门槛券
手把手带您无忧上云