Taro 编译成h5遇到的一些问题

  1. Compiling...SyntaxError: Unexpected token,具体报错如下图所示:
    Taro 编译成h5遇到的一些问题_第1张图片
    image.png

    以上是taro 开发终端报的错误提示,在浏览器中的报错显示为如下图所示:
    Taro 编译成h5遇到的一些问题_第2张图片
    image.png

    这个问题主要是config中配置的defineConstants没有进行JSON.stringify处理导致。

2.Failed to construct 'Image': Please use the 'new' operator, this DOM object constructor cannot be called as a function


Taro 编译成h5遇到的一些问题_第3张图片
image.png

像上面这种错误都是使用了元素,但没有import到文件导致。

  1. 使用了redux-persist,在引入PersistGate组件的时候,编译报 Unknown plugin "transform-decorators-legacy" specified in "base" 错误
    解决方式: package.json添加react依赖

你可能感兴趣的:(Taro 编译成h5遇到的一些问题)