收藏
回答

编译小程序 编译错误:WXML 报错 Bad attr `autosize` with messa?

[ WXML 文件编译错误] ./pages/submitorder/index.wxml

 Bad attr `autosize` with message

  85 |     <view>

  86 |         <van-cell-group>

> 87 |             <van-field autoFocus="{{true}}" autosize="{{maxHeight:200,minHeight:200,}}"bind:change="onChange" border="{{false}}" data-name="remark" inputAlign="left" inputClass="beizhuinput" label="" placeholder="请输入留言" type="textarea" value="{{form.remark}}"></van-field>

     |                                                     ^

  88 |         </van-cell-group>

  89 |         <view class="flex flex-row justify-center">

  90 |             <button bindtap="sheetbeizhu" class="button2" type="primary">完成</button>

at files://pages/submitorder/index.wxml#87

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

1 个回答

  • 奋斗吧小青年°
    奋斗吧小青年°
    2023-05-17

    你这个autosize属性是textarea才支持的

    2023-05-17
    有用
    回复 4
    • 若无其事
      若无其事
      2023-05-17
      怎么解决这个
      2023-05-17
      回复
    • 奋斗吧小青年°
      奋斗吧小青年°
      2023-05-17回复若无其事
      你把这个属性干掉就是了撒
      2023-05-17
      回复
    • 若无其事
      若无其事
      2023-05-17回复奋斗吧小青年°
      autosize="{{maxHeight:200,minHeight:200}}
                  "  这个去除页面这些图片都不显示了
      2023-05-17
      回复
    • 若无其事
      若无其事
      2023-05-17
      function inputStyle(autosize) {
        if (autosize && autosize.constructor === 'Object') {
            return (style(({
                'min-height': addUnit(autosize.minHeight),
                'max-height': addUnit(autosize.maxHeight),
            })))
        };
        return ('')
      };
      2023-05-17
      回复
登录 后发表内容