黔优媒体网-软文媒体自助发稿平台!
  1. 行业资讯
  2. 正文

MinUI 组件之 abnor异常流组件详解

来源:黔优媒体网   时间:2024-09-19

本文要和大家分享的是微信小程序 minui 组件库系列之 abnor 异常流组件,minui 是基于微信小程序自定义组件特性开发而成的一套简洁、易用、高效的组件库,适用场景广,覆盖小程序原生框架、各种小程序组件主流框架等,并且提供了高效的命令行工具。

MinUI 组件库包含了很多功能组件,其中 abnor 异常流组件是一个很常用的功能性组件, MinUI 中 abnor 组件的效果图如下:

各式各样的类型都有哦,是不是看起来很方便很快捷的样子(^_^)。可以打开微信扫一扫下面的小程序二维码先一睹为快:

下面介绍 abnor 组件的使用方式。

1、使用下列命令安装 Min-Cli,如已安装,请进入到下一步。Min-Cli 的文档请猛戳这里:Min-Cli使用手册

npm install -g @mindev/min-cli

2、初始化一个小程序项目。

min init my-project

选择 新建小程序 选项,即可初始化一个小程序项目。创建项目后,在编辑器中打开项目,src 目录为源码目录,dist 目录为编译后用于在微信开发者工具中指定的目录。新建的项目中已有一个 home 页面。详细文档:Min 初始化小程序项目

3、安装 abnor 组件。

进入刚才新建的小程序项目的目录中:

cd my-project

安装组件:

min install @minui/wxc-abnor

4、开启dev。

min dev

开启之后,修改源码后都会重新编译。

5、在页面中引入组件。

在编辑器中打开 src/pages 目录下的 home/index.wxp 文件,在 script 中添加 config 字段,配置小程序自定义组件字段,代码如下:

export default {
    config: {
         usingComponents : {
            'wxc-abnor':  @minui/wxc-abnor 
        }
    }
}

wxc-abnor 即为异常流组件的标签名,可以在 wxml 中使用。

6、在 wxml 中使用 wxc-abnor标签。

在 home/index.wxp 文件的 template 中添加 wxc-abnor 标签,代码如下:

 wxc-abnor /wxc-abnor 

7、打开微信开发者工具,指定 dist 目录,预览项目。

home/index.wxp 文件的代码如下所示:

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

至此,minui 组件库的 abnor 异常流组件在 Min 工具生成的小程序项目中的方法已介绍完毕,其他场景,在原生小程序或其他小程序框架项目中的使用方式请移步至如下链接:

在已有小程序项目中使用 MinUI 组件介绍

了解组件的使用方式后,下面开始介绍 abnor 组件的 API 。

Abnor【props】

[说明]:异常状态类型,其优先级低于其他属性。
[类型]:String
默认值:""
[可选值]:REQUEST_ERROR, NOT_FOUND, DATA, FOLLOW, FEED,SHOP, WEIBO, SEARCH, TAG, MESSAGE, LIVE, ORDER, CART, FOOTPRINT, COUPON

image [说明]:背景图。若与 type 同时指定,将覆盖 type 对应的 image 。
[类型]:String
[默认值]:""

title [说明]:标题。若与 type 同时指定,将覆盖 type 对应的 title 。
[类型]:String
[默认值]:""

[说明]:副标题。若与 type 同时指定,将覆盖 type 对应的 tip 。
[类型]:String
[默认值]:""

button [说明]:按钮文案。若与 type 同时指定,将覆盖 type 对应的 button 。
[类型]:String
[默认值]:""

bindabnortap [说明]:按钮事件。若配置了 button 属性,则需要指定事件。其中 REQUEST_ERROR, NOT_FOUND 两种 type 中均设置了默认的按钮文案

图示:

2、页面不存在

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {},
 onAbnorTap() {
 wx.showToast({
 title: #39;back #39;,
 duration: 2000
 /script 

图示:

3、自定义数据

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {
 image: #39;https://s10.mogucdn.com/p2/161213/upload_76h1c5hjc8heecjehlfgekjdl2ki0_514x260.png #39;,
 title: #39;自定义标题 #39;,
 tip: #39;自定义副标题 #39;,
 button: #39;点我 #39;
 onAbnorTap() {
 wx.showToast({
 title: #39;custom #39;,
 duration: 2000
 /script 

图示:

4、空数据状态

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

5、无关注数据

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {},
 methods: {}
 /script 

图示:

6、无反馈数据

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

7、无搜索数据

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

8、无消息通知

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

9、空订单列表

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

10、空购物车

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

11、空足迹

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

12、无优惠券数据

   wxc-abnor /wxc-abnor script 
 export default {
 config: {
 usingComponents: {
 #39;wxc-abnor #39;: #39;@minui/wxc-abnor #39;
 data: {}
 /script 

图示:

载入中...


以上就是MinUI 组件之 abnor异常流组件详解的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。


【免责申明】黔优媒体网以上展示内容来源于用户自主上传、合作媒体、企业机构或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表黔优媒体网官方立场,请读者仅做参考,本文标题:MinUI 组件之 abnor异常流组件详解;欢迎转载,转载时请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何违法/违规的内容,请您立即联系我们及时修正或删除。(邮箱号: kefu@qianu.com)