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



输入图片描述

我的代码截图。这里的错误是id没有使用,即使我已经使用了它。

我观看视频并复制它,但在我的axios部分,todoUrl和id有问题。视频链接是这样的。https://www.youtube.com/watch?v=AQQXlavDDc8

不是字符串,而是模板文字

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

用反引号符号`代替'来包装你的代码

相关内容

  • 没有找到相关文章

最新更新