1
私のVueコンポーネントは、ユーザーに電子メールの入力を要求します。データバインディングにv-model
を使用しています。アドニスでhttpリクエストを使用してVueフォーム入力をAdonisコントローラに送信する方法
<template>
<input v-model="email" type="text" placeholder="Email" />
<button class="tiny">Send</button>
</template>
<script>
export default {
data: function() {
return {
email: ''
}
}
}
</script>
私MailController
は、入力として、ユーザーの電子メールを受信することができるはずです。私はこのようなものを想像:
'use strict';
class MailController {
*mail (request, response) {
const email = request.input('email');
}
}
email
を得るための正しい方法がどうあるべきか?