美文网首页
uni-app采坑集锦

uni-app采坑集锦

作者: TOPro | 来源:发表于2020-03-30 11:20 被阅读0次
    • vue 使用高阶函数定义vue方法,this指向异常

      
      export default {
          methods: {
          
              //使用高阶函数生成组件方法
              typeCallback_type_1:  typeCalblackGen(1),
          }
      }
      
      function typeCalblackGen(type){
          return function(){
            const that = this;
            //小程序中  that指向空
            //H5正常
          }
      }
          
      
    • uni.uploadFile 千万不要设置header的content-type,否则文件会上传失败,没有原因。

    相关文章

      网友评论

          本文标题:uni-app采坑集锦

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