12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /**
- * 获取数据ajax-get请求
- * @author chanjunkai
- */
- // var http_ip_prot = 'http://192.168.136.40:4696/'
- let domain = document.domain;
- //let http_ip_prot = 'http://192.168.136.40:7724/';
- //生产环境
- let http_ip_prot = 'http://www.zositech.xyz:7724';
- $.GetJSON = function (url, data, callback) {
- $.ajax({
- url: url,
- type: "get",
- contentType: "application/json",
- dataType: "json",
- timeout: 10000,
- data: data,
- success: function (data) {
- callback(data);
- }
- });
- };
- /**
- * 提交json数据的post请求
- * @author laixm
- */
- $.postJSON = function (url, data, callback) {
- $.ajax({
- url: url,
- type: "post",
- contentType: "application/json",
- dataType: "json",
- data: data,
- timeout: 60000,
- success: function (msg) {
- callback(msg);
- },
- error: function (xhr, textstatus, thrown) {
- }
- });
- };
- /**
- * 修改数据的ajax-put请求
- * @author laixm
- */
- $.putJSON = function (url, data, callback) {
- $.ajax({
- url: url,
- type: "put",
- contentType: "application/json",
- dataType: "json",
- data: data,
- timeout: 20000,
- success: function (msg) {
- callback(msg);
- },
- error: function (xhr, textstatus, thrown) {
- }
- });
- };
- /**
- * 删除数据的ajax-delete请求
- * @author laixm
- */
- $.deleteJSON = function (url, data, callback) {
- $.ajax({
- url: url,
- type: "delete",
- contentType: "application/json",
- dataType: "json",
- data: data,
- success: function (msg) {
- callback(msg);
- },
- error: function (xhr, textstatus, thrown) {
- }
- });
- };
|