微信小程序——组件、API

一、常用组件介绍

1. text文本组件:

https://developers.weixin.qq.com/miniprogram/dev/component/text.html

<text user-select>长按被选中</text>

2. rich-text富文本组件:

https://developers.weixin.qq.com/miniprogram/dev/component/rich-text.html
应用场景:当请求服务器,返回隐私协议的时候有可能是大段标签,这时候就可以采用富文本的nodes属性对标签进行解析,从而将内容进行渲染出来。

<rich-text nodes="<h1 style='color:red'>富文本</h1>"></rich-text>

在这里插入图片描述

3. button按钮组件:

https://developers.weixin.qq.com/miniprogram/dev/component/button.html
应用:通过open-type属性可以调用微信提供的各种功能(客服、转发、获取用户授权、获取用户信息等)。
在这里插入图片描述在这里插入图片描述

4. image图片组件

https://developers.weixin.qq.com/miniprogram/dev/component/image.html
mode属性常用

5.navigator导航组件

https://developers.weixin.qq.com/miniprogram/dev/component/navigator.html

二、API

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/xulihua_75/article/details/126702520