收藏
回答

this.createSelectorQuery

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug createSelectorQuery 工具 v1.02.1907160 2.7.7

var query = this.createSelectorQuery();
    query.select('.ec-canvas').boundingClientRect(function (res) {
      console.log('query');

      if (typeof callback === 'function') {
        _this.chart = callback(canvas, res.width, res.height);
      } else if (_this.ec && typeof _this.ec.onInit === 'function') {
        _this.chart = _this.ec.onInit(canvas, res.width, res.height);
      } else if (_this.ec && _this.ec.options) {
        var ec = _this.ec;
        console.log('--options--');

        _this.chart = initChart(canvas, res.width, res.height, ec);
      } else {
        _this.triggerEvent('init', {
          canvas: canvas,
          width: res.width,
          height: res.height
        });
      }
    }).exec();

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

1 个回答

登录 后发表内容