微信小程序报错:expect end-tag `input`., near `div`
Posted 海轰Pro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序报错:expect end-tag `input`., near `div`相关的知识,希望对你有一定的参考价值。
报错提示
expect end-tag input
., near div
[ WXML 文件编译错误] ./pages/index/index.wxml
expect end-tag `input`., near `div`
8 | <input type="text" name="" required="">
9 | <label>Username</label>
> 10 | </div>
| ^
11 | <div class="user-box">
12 | <input type="password" name="" required=""/>
13 | <label>Password</label>
报错代码
<div class="user-box">
<input type="text" name="" required="">
<label>Username</label>
</div>
解决方法
问题在input标签
在小程序中需要闭合
添加个/就可以了
修改后:
<input type="text" name="" required=""/>
以上是关于微信小程序报错:expect end-tag `input`., near `div`的主要内容,如果未能解决你的问题,请参考以下文章