<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>