| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>首页</title>
- <link rel="stylesheet" href="/static/layui/css/layui.css">
- <link rel="stylesheet" href="/static/viewer/viewer.min.css">
- <script src="/static/jquery.min.js"></script>
- <script src="/static/layui/layui.js"></script>
- </head>
- <body>
- <p>{{ model }}</p>
- <div id="show">
- </div>
- </body>
- <script type="text/javascript">
- $(function (){
- load_data();
- });
- function load_data() {
- $("#show").empty();
- var action = "load_data"
- param = {}
- $.ajax({
- type: "POST",
- url: action,
- data: param,
- success: function (result) {
- try {
- for(let i=0; i<result.length; i++){
- rs = JSON.stringify(result);
- $("#show").append(rs + "<br/>");
- }
- } catch (e) {
- console.log(e)
- }
- },
- error: function () {
- console.log("请求失败!");
- }
- });
- }
- </script>
- </html>
|