1
私はこれを持っている:Eメールの入力が有効な形式でないときVue.jsの入力のフォーマットを検証するために使用できる単純な関数は何ですか? Vue.jsで
<template>
<button @click="sendMail(); $emit('close')">Send</button>
</template>
<script>
methods: {
sendMail() {
axios.post('/mail', {email: this.email});
this.$notify.make('Sent!', 'success');
},
invalidEmail() {
this.$notify.make('Invalid email format!', 'failure'):
}
}
</script>
にはどうすればinvalidEmail()
を誘発することができるのだろうか?
質問は少し不明です。 sendMailを呼び出す前に電子メールが無効かどうかを確認する方法が必要ですか? – Cobaltway
イベントリスナー 'sendMail($ event)'に '$ event'を渡し、関数の引数' methods:{sendMail(event)... 'を取得し、' event.target.value'が有効であるかどうかを調べることができます。 – wostex
はい、入力が有効かどうかを確認する方法はまだありません。 @Cobaltway – Bargain23