wx.getDeviceVoIPList遇到fail invalid scope?
我的js如下: Page({
data: {
voipList: []
},
getVoIPList: function() {
wx.getDeviceVoIPList({
success: (res) => {
console.log('VoIP List:', res);
this.setData({
voipList: res.voipList
});
},
fail: (err) => {
console.error('Failed to get VoIP list:', err);
}
});
}
});
我的wxml如下: <view class="container">
<button bindtap="getVoIPList">获取 VoIP 应用列表</button>
<view class="voip-list">
<view wx:for="{{voipList}}" wx:key="index">
<text>{{item}}</text>
</view>
</view>
</view>
但是报错: [图片] 但是我在官方文档没看见scope呢? [图片]