当前位置: 首页 > 工具软件 > ngx-weui > 使用案例 >

[WeUI]的loading使用

范峰
2023-12-01
<script>
        $.showLoading("正在加载...");
        $.ajax({
            type: "POST",
            url: 'http://192.168.1.144:8089/hello/test',
            dataType: "json",
            data: {
                name:'hh'
            },
            success: function (data) {
                $.hideLoading();
                console.log(data);
            }
        }); 
    </script>
 类似资料: