欢迎访问WDPHP素材源码!今天是2024年04月29日 星期一,中午好!吃了吗?
您好,游客 [ 马上登录 | 注册帐号 | 微信登录 | QQ登录]
当前位置:首页 > 教程 > 前端开发 > 

Vue的子组件props怎么设置多个校验类型
栏目分类:前端开发    发布日期:2023-05-24    浏览次数:350次     收藏

本篇内容主要讲解“Vue的子组件props怎么设置多个校验类型”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Vue的子组件props怎么设置多个校验类型”吧!

    vue子组件props设置多个校验值

    1. type使用 | 进行隔开

    props: {
        iconClass: {
          type: String | null,
          required: true,
          default: ""
        }
    },

    2. 使用数组

    props: {
      iconClass: [String , null]
    },

    3. 使用validator校验函数

    props: {
        iconClass: {
            validator: (value)=> {
              const getResult = Object.prototype.toString.call(value)
              if(getResult === "[object Null]" || getResult === "[object String]") return true;
            },
            required: true,
            default: ""
      },
    }

    Vue组件参数校验

    在vue中,当父组件向子组件传递值时.子组件可以对传递过来的值进行参数校验.

    首先我们定义一个子组件child,接受父组件传递过来的值content.

    <child :content="1"></child>
    
    Vue.component('child',{
                  props:['content'],
                  template: "<div>{{content}}</div>",
              })

    注意但我们在content前面加上:,它会认为这是js表达式,所以认为"1"是Number类型而不是String类型.

    参数校验一

    限定参数的类型

    <child :content="1"></child>
    
    Vue.component('child',{
                  props:{
                   content: [String,Number],   //这样就限制了参数的类型为String或者Number.
                 },
                  template: "<div>{{content}}</div>",
              })

    如果不满足则会报[Vue warn]: Invalid prop: type check failed for prop “content”. Expected String, got Number.

    参数校验二

    限定参数的类型,是否必须,默认值

     Vue.component('child',{
                  props:{
                     content:{
                         type:Number,   //限制参数的类型为Number
                         default:100,   //设置参数的默认值为100
                         required:false,  //是否必须
                     } 
                  },
                  template: "<div>{{content}}</div>",
              })

    参数校验三

    自定义校验规则

    Vue.component('child',{
                  props:{
                     content:{
                         type:Number,
                         default:100,
                         required:false,
                         validator:function(value){   //自定义校验的规则
                             return value>5;
                         }
                     }
                  },
                  template: "<div>{{content}}</div>",
              })
    源码 模板 特效 素材 资源 教程 站长