web-dev-qa-db-ja.com

VueJs Propsに複数のデータ型を追加するにはどうすればよいですか?

コンポーネントに異なる値を渡すと、このエラーが発生しました。

enter image description here

24
Harsha Sampath

これが私が見つけた解決策です。

props: {
   value: [Number, String, Array]
}
48
Harsha Sampath

タイプの頭痛がない場合、一般的に小道具は文字列の配列としてリストされます:

props: ['title', 'likes', 'isPublished', 'commentIds', 'author']

すべての小道具を特定のタイプの値にしたい場合。これらの場合、プロパティの名前と値にそれぞれプロップ名とタイプが含まれるオブジェクトとしてプロップをリストできます。

props: {
    title: String,
    likes: Number,
    isPublished: Boolean,
    commentIds: Array,
    author: Object
}

複数のタイプを使用する場合は、次のようにします。

props: {
    value: [String, Number],
}
4
Md Riadul Islam

パイプ(Number | String)は、受け入れられた回答で提案されているように、実際には機能しません。以下は、例を含むより詳細なソリューションです。

タイプチェック、必須ではないプロップ

次の構文を使用して、小道具をタイプチェックします。

props: {
  username: {
    type: [ String, Number ]
  }
}

これは、タイプチェックのあるプロパティの実際の例です。

Vue.config.devtools = false;
Vue.config.productionTip = false;

Vue.component('test-component', {
  name: 'TestComponent',
  props: {
    username: {
      type: [ String, Number ]
    }
  },
  template: `<div>username: {{ username }}</div>`
});

new Vue({ el: '#app' });
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.js"></script>

<div id="app">
  <!-- valid: String -->
  <test-component :username="'user 38'"></test-component>
  
  <!-- valid: Number -->
  <test-component :username="59"></test-component>
  
  <!-- valid: null is valid, it is not required -->
  <test-component :username="null"></test-component>

  <!-- valid: missing property is valid, it is not required -->
  <test-component></test-component>

  <!-- invalid: Array -->
  <test-component :username="['test', 456]"></test-component>
</div>

タイプチェック、必要なプロップとカスタムバリデーター

次の構文を使用して、必要なプロパティとカスタムバリデーターをタイプチェックします。

props: {
  username: {
    type: [ String, Number ],
    required: true, // optional
    validator: item => item !== '123' // optional
  }
}

カスタムバリデーターと一緒に必要なプロパティの実際の例を次に示します。

Vue.config.devtools = false;
Vue.config.productionTip = false;

Vue.component('test-component', {
  name: 'TestComponent',
  props: {
    username: {
      type: [ String, Number ],
      required: true,
      validator: item => item !== '123'
    }
  },
  template: `<div>username: {{ username }}</div>`
});

new Vue({ el: '#app' });
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.js"></script>

<div id="app">
  <!-- valid: String -->
  <test-component :username="'user 38'"></test-component>
  
  <!-- valid: Number -->
  <test-component :username="59"></test-component>
  
  <!-- invalid: Array -->
  <test-component :username="['test', 456]"></test-component>
  
  <!-- invalid: String, but disallowed by custom validator -->
  <test-component :username="'123'"></test-component>
  
  <!-- invalid: null property, it is required though -->
  <test-component :username="null"></test-component>

  <!-- invalid: missing required prop -->
  <test-component></test-component>
</div>
3
ssc-hrep3

他の人が示唆したように、vuejsで小道具を定義するには2つの方法があります。

最初のもの

//No need to define the type with this one
props: ['myVariable', 'foo', 'something']

2つ目

//With this one you can define what type the prop is and other different useful things!
props: {
  myVariable: String, //You can define the type like this
  anyOfTheFollowing: String/Object/Array, //You can also define multiple possible types
  'kebab-case-like': Function, //Since vuejs is still javascript and the property 'props' is actually an object, you can define your props like this for kebab-case. You can also just use camelCase and use the kebab-case version in your template and it will still recognize it
  customOne: MyCustomType, //You can in theory use classes you've defined aswell
  foo: { //This is another way of defining props. Like an object
    type: Number,
    default: 1, //This is why this is mostly used, so you can easily define a default value for your prop in case it isn't defined
  },
  andAnotherOne: {
    type: Array,
    default: () => [], //With Arrays, Objects and Functions you have to return defaults like this since you need to return a new reference to it for it to be used
  },
  requiredOne: {
    type: Object,
    required: true //Another use for this. When it is marked as required and it isn't defined you'll get an error in the console telling you about it
  }
}

IMO私は2番目のバージョンが大好きなので、デフォルトのプロパティが特に好きです。

1
Jasqui