axios 我怎么能固定的错误分配的id从未被使用,但实际上使用?

xqk2d5yq  于 2023-04-06  发布在  iOS
关注(0)|答案(1)|浏览(106)

enter image description here
我的代码截图。错误是ID没有使用,即使我已经使用了它。
我看了一个视频并复制了它,但在我的axios部分,todoUrl和id有问题。视频链接是这样的。https://www.youtube.com/watch?v=AQQXlavDDc8

uyhoqukh

uyhoqukh1#

它不是字符串,而是template literal

await Axios.put(`${todoUrl}/${id}`, this.todoItem);
...
await Axios.delete(`${todoUrl}/${id}`, this.todoItem);

用反勾符号```代替'单引号将代码括起来

相关问题