ES6 modules implementation, how to load a json file(ES6 模块实现,如何加载 json 文件)
问题描述
我正在实施一个来自 https://github.com/moroshko/react-autosuggest 的示例一个>
重要的代码是这样的:
import React, { Component } from 'react';
import suburbs from 'json!../suburbs.json';
function getSuggestions(input, callback) {
const suggestions = suburbs
.filter(suburbObj => suburbMatchRegex.test(suburbObj.suburb))
.sort((suburbObj1, suburbObj2) =>
suburbObj1.suburb.toLowerCase().indexOf(lowercasedInput) -
suburbObj2.suburb.toLowerCase().indexOf(lowercasedInput)
)
.slice(0, 7)
.map(suburbObj => suburbObj.suburb);
// 'suggestions' will be an array of strings, e.g.:
// ['Mentone', 'Mill Park', 'Mordialloc']
setTimeout(() => callback(null, suggestions), 300);
}
示例中的这个复制粘贴代码(有效)在我的项目中有一个错误:
This copy-paste code from the example (that works), has an error in my project:
Error: Cannot resolve module 'json' in /home/juanda/redux-pruebas/components
如果我去掉前缀 json!:
If I take out the prefix json!:
import suburbs from '../suburbs.json';
这样我在编译时不会出错(导入完成).但是当我执行它时出现错误:
This way I got not errors at compile time (import is done). However I got errors when I execute it:
Uncaught TypeError: _jsonfilesSuburbsJson2.default.filter is not a function
如果我调试它,我可以看到郊区是一个 objectc,而不是一个数组,所以没有定义过滤函数.
If I debug it I can see suburbs is an objectc, not an array so filter function is not defined.
但是在示例中被注释的建议是一个数组.如果我重写这样的建议,一切正常:
However in the example is commented suggestions is an array. If I rewrite suggestions like this, everything works:
const suggestions = suburbs
var suggestions = [ {
'suburb': 'Abbeyard',
'postcode': '3737'
}, {
'suburb': 'Abbotsford',
'postcode': '3067'
}, {
'suburb': 'Aberfeldie',
'postcode': '3040'
} ].filter(suburbObj => suburbMatchRegex.test(suburbObj.suburb))
那么...什么json!前缀是在做什么进口的?
So... what json! prefix is doing in the import?
为什么我不能把它放在我的代码中?一些 babel 配置?
Why can't I put it in my code? Some babel configuration?
推荐答案
首先需要安装<代码>json-loader:
First of all you need to install json-loader
:
npm i json-loader --save-dev
那么,有两种方法可以使用它:
Then, there are two ways how you can use it:
为了避免添加
json-loader
在每个import
你可以添加到webpack.config
这一行:
In order to avoid adding
json-loader
in eachimport
you can add towebpack.config
this line:
loaders: [
{ test: /.json$/, loader: 'json-loader' },
// other loaders
]
然后像这样导入json
文件
import suburbs from '../suburbs.json';
直接在你的 json-loader
代码>导入,如您的示例:
import suburbs from 'json!../suburbs.json';
注意:在 webpack 2.*
代替关键字 loaders
需要使用 rules
.,
也 webpack 2.*
默认使用 json-loader
*.json 文件现在支持不带 json-loader.你仍然可以使用它.这不是重大变化.
*.json files are now supported without the json-loader. You may still use it. It's not a breaking change.
v2.1.0-beta.28代码>
这篇关于ES6 模块实现,如何加载 json 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ES6 模块实现,如何加载 json 文件
基础教程推荐
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01