commonutil.js
600 Bytes
/**
* create by zhouxiang
*/
(function ($) {
/**
* 解决post请求发送后台报415的错
* 重写post方法
* @param url
* @param data
* @param async
* @param callback
* @returns {*}
*/
$.postJSON = function (url, data, callback, async) {
return jQuery.ajax({
'type': 'POST',
'url': url,
'async': async ? async : false,
'contentType': 'application/json',
'data': JSON.stringify(data),
'dataType': 'json',
'success': callback
});
};
})(jQuery);