web-dev-qa-db-ja.com

Vue js 2&Axios Post Request-Form

Axiosを使用してフォームを投稿しようとしていますが、expressjsを使用してバックエンドにデータを取得できません

これは私がやっていることです:

<template>
 <form class="" method="post" @submit.prevent="postNow">
 <input type="text" name="" value="" v-model="name">
 <button type="submit" name="button">Submit</button>
 </form>
</template>

export default {
  name: 'formPost',
  data() {
    return {
      name: '',
      show: false,
    };
  },
  methods: {
   postNow() {
  axios.post('http://localhost:3030/api/new/post', {
    headers: {
      'Content-type': 'application/x-www-form-urlencoded',
    },
    body: this.name,
   });
  },
  components: {
    Headers,
    Footers,
  },
};

バックエンドファイル:

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
router.post('/new/post', (req, res) => {
  res.json(console.log("this is working" + ' ' + req.body.name));
});

私が受け取っているエラーは次のとおりです。

this is working undefined
15
Marketingexpert

Axios post形式:

axios.post(url[, data[, config]])

リクエストは次のようになります。

axios.post('http://localhost:3030/api/new/post', 
    this.name, // the data to post
    { headers: {
      'Content-type': 'application/x-www-form-urlencoded',
      }
    }).then(response => ....);

フィドル: https://jsfiddle.net/wostex/jsrr4v1k/3/

29
Egor Stambakio