美文网首页
taro 挖坑填坑

taro 挖坑填坑

作者: jevons_lee_ | 来源:发表于2019-03-26 16:53 被阅读0次

    看了两周的文档,3月终于开始上手taro了,一套代码可以编译h5、小程序、rn,何乐而不为呢?

    然后就遇到各种各样的坑


    taro ui

    错误:

    Failed to compile.
    
    ./node_modules/taro-ui/dist/h5/components/countdown/index.js 105:11
    
    Module parse failed: Unexpected token (105:11)
    
    You may need an appropriate loader to handle this file type.
    
    |    } = this.state;
    
    | 
    
    >    return <View className={classNames({
    
    |      'at-countdown': true,
    
    |      'at-countdown--card': isCard
    
    

    解决:

    在 'config/index' 中 引入

    
    h5: {
    
    esnextModules: ['taro-ui']
    
    }
    
    

    思考:

    不好好看文档!

    参考:https://github.com/NervJS/taro-ui/issues/423


    异步的问题

    问题:

    regeneratorRuntime is not defined
    

    解决:

    $ yarn add @tarojs/async-await
    # 或者使用 npm
    $ npm install --save @tarojs/async-await
    

    在有异步操作的页面引入 import '@tarojs/async-await'

    思考:

    又不好好看文档!

    参考:https://nervjs.github.io/taro/docs/async-await.html

    相关文章

      网友评论

          本文标题:taro 挖坑填坑

          本文链接:https://www.haomeiwen.com/subject/wlegvqtx.html