45 lines
806 B
HTML
45 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link rel="stylesheet" href="../../lib/layui/css/layui.css"/>
|
|
</head>
|
|
<body>
|
|
|
|
dsafasdf
|
|
</body>
|
|
</html>
|
|
<script src="../../lib/layui/layui.js"></script>
|
|
<script type="text/javascript">
|
|
layui.use(["jquery","okFly"], function () {
|
|
let $ = layui.jquery,
|
|
okFly = layui.okFly;
|
|
|
|
okFly.post("/test", {
|
|
a: "as",
|
|
b: 125
|
|
}).then(function (res) {
|
|
console.log(res);
|
|
}).catch(function (err) {
|
|
console.log(err);
|
|
});
|
|
|
|
okFly.get("/test", {
|
|
a: "as",
|
|
b: 125
|
|
}).then(function (res) {
|
|
console.log(res);
|
|
}).catch(function (err) {
|
|
console.log(err);
|
|
});
|
|
});
|
|
</script>
|
|
<!--
|
|
{
|
|
"title": "测试",
|
|
"href": "pages/help/test.html",
|
|
"fontFamily": "ok-icon",
|
|
"icon": ""
|
|
},-->
|