NodeJs,VueJs发回404

时间:2018-06-05 10:13:54

标签: javascript node.js vue.js vue-router

我使用vue,vue-route,nodejs。 我需要的 ?将表单数据发送到现有的json文件。也许有比邮寄更好的可能性?

此时我尝试发帖请求,但我遇到了问题:

在我的路由器中:

export default new Router({
mode: 'history',
routes: [
    {
        path: '/',
        name: 'test',
        component: HelloWorld
    },
    {
        path:'/add',
        name: 'add',
        component: Test
    }
]})

在我的组件HelloWorld.vue中:

  axios({
                method: 'post',
                url: 'http://localhost:8080/add',
                data: {
                    name: this.config.persons.name,
                    phone: this.config.persons.phone,
                    email: this.config.persons.email
                }
            });

POST方法返回:

  

POST http://localhost:8080/add 404(未找到)

0 个答案:

没有答案