我在html-to-react
ReactJS
解析器时遇到错误
我收到错误
“_ htmlToReact.HtmlToReactParser不是构造函数”。
我已将'HtmlToReactParser'
导入为
import {HtmlToReactParser} from 'html-to-react'
答案 0 :(得分:0)
使用ES6导入方式,您需要将其导入为
import {Parser as HtmlToReactParser} from 'html-to-react'.
相当于
var HtmlToReactParser = require('html-to-react').Parser;
在DOCS中提到的commonJS