收藏
回答

这句话什么意思?在哪引入的wxml,style。我这没有demo.js这个文件。能不能说清楚啥意思

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wxml-to-canvas 工具 6.5.3 2.0.0

const {wxml, style} = require('./demo.js')

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

2 个回答

  • Alex
    Alex
    2021-07-26

    demo.js是修改样式模板的文件,在根目录下自己新建,主要代码如下:

    const wxml = `


      <view class="container">

          <image class="img" src="/image/sharebg.jpg"></image>

      </view>

    </view>

    `


    const style = {

      container: {

        width: 300,

        height: 200,

        flexDirection: 'row',

        justifyContent: 'space-around',

        backgroundColor: '#ccc',

        alignItems: 'center',

      },

      itemBox: {

        width: 80,

        height: 60,

      },

     

      text: {

        width: 80,

        height: 60,

        textAlign: 'center',

        verticalAlign: 'middle',

      },

      img: {

        width: '100',

        height: '100',

     

      }

    }


    module.exports = {

      wxml,

      style

    }


    2021-07-26
    有用
    回复
  • Cjiang
    Cjiang
    2020-11-10

    你好,wxml以及style请参考文档下的wxml模板以及样式:https://developers.weixin.qq.com/miniprogram/dev/extended/component-plus/wxml-to-canvas.html


    2020-11-10
    有用
    回复
登录 后发表内容
问题标签