반응형
폼 전송 후 화면 새로고침(Vue.js)
Disconsid 명령어 작성 앱을 만들고 있습니다.고객이 서버와 올바르게 대화하여 원하는 것을 출력하도록 하고 있습니다.문제는 일단 양식을 제출하면 페이지가 새로 고쳐지지 않는다는 것입니다.아래에는 템플릿과 스크립트가 있습니다.
<template>
<form v-on:submit="addCommand">
<div id="container" class="col-md-5 m-auto">
<div class="card card-body">
<h1 class="text-center mb-3"><i class="fab fa-discord"></i> Command Creator</h1>
<div class="form-group">
<label for="command">Command</label>
<input type="text" v-model="command" class="form-control" placeholder="Please enter a command." />
</div>
<div class="form-group">
<label for="output">Output</label>
<input type="text" v-model="output" class="form-control" placeholder="Please enter an output." />
</div>
<button type="submit" class="btn btn-primary btn-block">Create</button>
</div>
</div>
</form>
</template>
<script>
export default {
name: 'Dashboard',
data () {
return {
command: '',
output: ''
}
},
methods: {
addCommand (e) {
this.axios.post('http://localhost:3000/server', {
command: this.command,
output: this.output
})
e.preventDefault()
}
}
}
</script>
언급URL : https://stackoverflow.com/questions/54393506/reload-screen-after-submitting-form-vue-js
반응형
'programing' 카테고리의 다른 글
Vue 구성 요소에서 비동기 결과를 기다리는 올바른 방법 (0) | 2022.07.12 |
---|---|
EOF를 C코드로 나타냅니까? (0) | 2022.07.12 |
목록을 일괄적으로 분류할 수 있는 일반적인 Java 유틸리티가 있습니까? (0) | 2022.07.11 |
Java에서 현재 스택트레이스를 취득하려면 어떻게 해야 하나요? (0) | 2022.07.11 |
Vue 컴포넌트의 양방향 데이터 흐름 (0) | 2022.07.11 |