收藏
回答

'createView' of undefined多久解决,找不到canvas

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug SelectorQuery NodesRef.node(function callback) 微信安卓客户端 8.0.7 2.7.0

https://developers.weixin.qq.com/miniprogram/dev/api/wxml/NodesRef.node.html

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

1 个回答

  • 依然
    依然
    2021-09-02
    wx.createSelectorQuery()
      .in(this)
      .select('#id')
      .fields({
        node: true,
        size: true,
      })
      .exec((res) => {
        console.log(res)
      });
    
    2021-09-02
    有用
    回复
登录 后发表内容