小程序不支持chooseInovice的BUG
- 当前 Bug 的表现(可附上截图)
__
__
手机上执行时调试console提示:wx.chooseInvoice is not a funtion…,开发工具中也没有chooseInvoice的快速代码提示。
- 预期表现
通过chooseInvoice应该顺利拉起用户卡包中的发票列表。
根据官方文档,小程序应该支持chooseInovice和chooseInoviceTitle接口
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/invoice/wx.chooseInvoice.html
- 提供一个最简复现 Demo
wx.authorize({ scope: "scope.invoice" });
wx.chooseInvoice({
success: function (res) {
wx.showToast({
title: '哈哈'
})
},
fail: function (res) {
wx.showToast({
title: '呜呜'
})
}
});