需要在点击时候跳转到对应id的后台从数据库中查询的数据,
即
需要显示是当$id=event.id,显示对应的数据,而不是默认值显示的数据
//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)
})
6 回答2.3k 阅读✓ 已解决
5 回答5.2k 阅读✓ 已解决
6 回答896 阅读
2 回答1.7k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
4 回答1.6k 阅读✓ 已解决
2 回答1.2k 阅读✓ 已解决
一般来说就是使用
ajax
。跟
vue
搭配的话,我建议是axios