uni-app采坑集锦
2020-03-30 本文已影响0人
TOPro
-
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,否则文件会上传失败,没有原因。