前提・実現したいこと
Vue.jsでスタートボタンを押すとラベル内に入力した値を引数としてmethodsに渡すプログラムを作りたいのですがエラーが出てしまいます。
発生している問題・エラーメッセージ
error 'textInput' is defined but never used no-unused-vars
該当のソースコード
html,javascript
1<template> 2 <div id="app"> 3 <h3> 4 <label for="name">value : </label><input type="number" v-model="textInput" id="name" name="name"> 5 </h3> 6 <div> 7 <button type="button" @click="test_post(textInput);" style="width:120px;height:50px">start</button> 8 </div> 9 </div> 10</template> 11 12<script> 13export default { 14 name: 'App', 15 data(){ 16 return{ 17 textInput:'', 18 } 19 }, 20 methods: { 21 test_post(textInput){ 22 this.axios.post('http://IPアドレス:ポート番号/result?value=textInput') 23 .then(res =>{ 24 console.log(res.data) 25 }) 26 } 27 } 28} 29</script>
お力添えをいただけますと幸いです。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/11 04:08