作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题需要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
})
}
关于javascript - 如何从纯 JS 访问 Axios?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63334137/
我是一名优秀的程序员,十分优秀!