supervons / react-native-echarts-pro

A React-Native charts based on Apache ECharts, support various charts and map.
https://supervons.github.io/react-native-echarts-pro-docs/
MIT License
216 stars 33 forks source link

请问一下,作者是否对 echarts.min.js 做了特殊处理 #65

Closed ruofee closed 2 years ago

ruofee commented 2 years ago

请教一下,作者对 echart.min.js 除了给 ` 加上转义之外,还有做一些其他的处理吗?

supervons commented 2 years ago

可以查看 https://github.com/supervons/react-native-echarts-pro/issues/2

主要是:

  1. 使用export default导出模板字符串;

  2. \ 替换成 \\
    ` 替换成 \`
ruofee commented 2 years ago

可以查看 #2

主要是:

  1. 使用export default导出模板字符串;
\ 替换成 \\
` 替换成 \`

感谢解答!