如何在javascript fetch()方法上传递带有url的变量?
我正在尝试使用javascript上的GET方法从URL获取数据,
fetch('/api/staffattendance/{makedate}')
.then(res => res.json())
.then(res => {
//this.staffs = res.data;
console.log(res.data);
})
.catch(err => console.log(err));
如何在此处传递变量
fetch('/api/staffattendance/{makedate}')
这样
提前感谢,
解决方案
一种方法是字符串连接,但是js
引入了另一种机制,称为template literal
:
用``嵌入字符串,用${makedate}嵌入用户变量。
`/api/staffattendance/${makedate}`
如果这有帮助,请让我知道。
相关文章