微信小程序 canIUse

 

wx.canIUse();

微信文档中定义在API中,可以理解为一个函数

返回值: true 或者 false

 

示例:

// 在JS文件的函数中进行使用
console.log(wx.canIUse('console.log'));
// 输出:true

你可能感兴趣的:(微信小程序 canIUse)