收藏
回答

wx.getDeviceVoIPList遇到fail invalid scope?

我的js如下:

Page({
  data: {
    voipList: []
  },


  getVoIPListfunction() {
    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呢?

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容