微信小程序常见排坑

2021/4/15 12:28:27

本文主要是介绍微信小程序常见排坑,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一:真机调试报MiniProgramError U.createEvent is function

已知解决方式之一:

    检查你的index.js文件,看是否有以下自动生成的代码,或者全局搜索(wx.hideLoading()):

doUpload: function () {
    // 选择图片
    wx.chooseImage({
      count: 1,
      sizeType: ['compressed'],
      sourceType: ['album', 'camera'],
      success: function (res) {
        wx.showLoading({
          title: '上传中',
        })

        const filePath = res.tempFilePaths[0]

        // 上传图片
        const cloudPath = `my-image${filePath.match(/\.[^.]+?$/)[0]}`
        wx.cloud.uploadFile({
          cloudPath,
          filePath,
          success: res => {
            console.log('[上传文件] 成功:', res)

            app.globalData.fileID = res.fileID
            app.globalData.cloudPath = cloudPath
            app.globalData.imagePath = filePath

            wx.navigateTo({
              url: '../storageConsole/storageConsole'
            })
          },
          fail: e => {
            console.error('[上传文件] 失败:', e)
            wx.showToast({
              icon: 'none',
              title: '上传失败',
            })
          },
          complete: () => {
            wx.hideLoading()
          }
        })
      },
      fail: e => {
        console.error(e)
      }
    })
  },

二: 真机调试时:Provisional headers are shown

上面这情况有通过证书解决的(使用https调试的时候),可我的请求是本地的,所以我改用从nginx服务器时就没出现这情况了(印象中真机调试应该时允许本地机器调试的)。



这篇关于微信小程序常见排坑的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程