获取微信对象 getWx

获取微信对象 getWx

通过 getWx 方法获取 wx 对象,并直接调用对象上的方法。

API

getWx() => Promise<Wx>;

Example

zanNativeBridge.getWx().then(wx => {
  if (wx) {
    wx.addCard({
      //...
    });
  }
}).catch(() => {});