前端用的vue,后端用的php,vue如何将数据传给后台

新手上路,请多包涵

需要在点击时候跳转到对应id的后台从数据库中查询的数据,
QQ图片20200214182138.pngQQ图片20200214182058.pngQQ图片20200214182045.pngQQ图片20200214182054.png
需要显示是当$id=event.id,显示对应的数据,而不是默认值显示的数据

阅读 7.1k
3 个回答

一般来说就是使用ajax

vue 搭配的话,我建议是 axios

//post请求
const id = 'xxx';
const token = 'xxxxxxxxxxxxxxxxx';
axios.post("http://xxx/xxx", //你的后台服务器接口
    {
        'id': id  //参数列表
    }, 
    {
        headers: {'token':token }
    }
).then((res)=>{
    console.log(res)
})

//get请求
const id = 'xxx';
const token = 'xxxxxxxxxxxxxxxxx';
axios.get("http://xxx/xxx",{
       params:{ id: id},
       headers:{ token: token }
    }).then((res)=>{
        console.log(res)
 })
新手上路,请多包涵

不使用ajax,或者axios,我是通过在增加一列数据才显示出来的

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏