收藏
回答

wx.canIUse is not a function 还是有报错误

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 需求 canIUse 客户端 6.5.3-6.5.7 1.9.1

// 显示loading

function showLoading(word) {

    if (wx.canIUse('showLoading')) {

        wx.showLoading({ title: word, mask: true });

    } else {

        wx.showToast({

            title: word,

            icon: 'loading'

        });

     }

}

以上是代码

一下是报错和配置




回答关注问题邀请回答
收藏
登录 后发表内容