[ WXML 文件编译错误] ./pages/my/index.wxml end tag missing, near `view` > 1 | <view class="my"> | ^ 2 | <image src="{{avatarUrl}}" style="width: 100%; height: 150px; background-color: rgb(136,141,205);"></image> 3 | <!-- 用户头像 --> 4 | <view class="user-info"> at files://pages/my/index.wxml#1(env: Windows,mp,1.06.2306020; lib: 2.19.4)
时间: 2024-03-17 15:47:05 浏览: 228
index.wxml
这个错误提示是因为在 `pages/my/index.wxml` 文件的第一个 `view` 标签没有闭合。需要确认代码中所有的标签都已正确闭合。
你可以尝试将第一个 `view` 标签修改为以下代码:
```
<view class="my">
<image src="{{avatarUrl}}" style="width: 100%; height: 150px; background-color: rgb(136,141,205);"></image>
<!-- 用户头像 -->
<view class="user-info"></view>
</view>
```
同时,也需要检查其他的标签是否有遗漏未闭合的情况,以确保代码的正确性。
阅读全文