1 Star 0 Fork 0

fjin/N4Obix

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
n4 postman.html 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
fjin 提交于 2021-06-15 17:53 . N4obix
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>postman:jquery发送ajax请求</title>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<h2 class="page-header">jquery发送ajax请求</h2>
<button type="button" class="btn btn-primary">GET</button>
</div>
<script>
$("button")
.eq(0)
.click(function () {
var settings = {
// async: true,
// crossDomain: true,
url: "https://127.0.0.1/obix/config/Folder/DI1/out",
method: "GET",
beforeSend: function (req) {
req.setRequestHeader(
"Authorization",
"Basic " + btoa("obixuser" + ":" + "Obixuser123")
);
},
};
$.ajax(settings).done(function (response) {
console.log(response);
});
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/fjin2020/n4-obix.git
git@gitee.com:fjin2020/n4-obix.git
fjin2020
n4-obix
N4Obix
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385