Reactjs:'html-to-react'解析器错误

时间:2017-06-01 10:15:49

标签: javascript reactjs npm html-parsing

我在html-to-react

中使用ReactJS解析器时遇到错误

我收到错误

  

“_ htmlToReact.HtmlToReactParser不是构造函数”。

我已将'HtmlToReactParser'导入为

import {HtmlToReactParser} from 'html-to-react'

1 个答案:

答案 0 :(得分:0)

使用ES6导入方式,您需要将其导入为

import {Parser as HtmlToReactParser} from 'html-to-react'.

相当于

var HtmlToReactParser = require('html-to-react').Parser;

在DOCS中提到的commonJS