localhost로 처음 메인화면은 켜지는데
post get는 아무리 해도 안돼서요 ㅠ
강의로 따라하는 거는 잘 되는데 vue랑 연동해서 하려고 하니까 안되네요ㅠㅠ
vue는 ajax를 활용해야 할 수 있는건가요?
<Review.vue>
<form action="/add" method="post">
<div class="reviewG">
<label>리뷰</label>
<input type="text" class="titleInput" name="title">
</div>
<button type="submit" class="reviewSave">저장</button>
</form>
<server.js>
app.post('/add', function(요청, 응답){
응답.send('전송완료');
console.log(요청.body.title)
});