💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ## 1.`scroll-view`可滚动视图区域。 [开发文档](https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html?search-key=scroll-view) ``` <scroll-view scroll-x="true"> <view class="avatars"> <block wx:for="{{cast}}" wx:key=""> <view > <image src="{{item.avatars.small}}" /> <text class='avatars-name'>{{item.name}}</text> </view> </block> </view> </scroll-view> ``` ## web-view > web-view 组件是一个可以用来承载网页的容器,会自动铺满整个小程序页面 ``` <web-view src="https://mp.weixin.qq.com/"></web-view> ```