gpt4 book ai didi

javascript - 如何从纯 JS 访问 Axios?

转载 作者:行者123 更新时间:2023-12-05 00:26:38 26 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












编辑问题以包含 desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem .这将帮助其他人回答问题。


1年前关闭。







Improve this question




我正在尝试在纯 JS 中使用 Axios。我已经从 CDN 中包含了它。在文档中,他们正在创建这样的 Axios 对象:const axios = require('axios');如果没有 Node 和普通的 JS,我怎么能做同样的事情?

最佳答案

第 1 步。使用标签中的脚本标签导入 axios CDN。例如。

<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.min.js"></script>
步骤 2. 在这样的脚本标签中使用 axios :-
<script>
function handleRequest() {
axios.post("url", {name: "data"}).then(function (response) {
console.log(response)
// do whatever you want if console is [object object] then stringify the response
})
}

您当然可以在没有 nodeJS.Happy Coding 的情况下在 html 文件中使用 axios

关于javascript - 如何从纯 JS 访问 Axios?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63334137/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com