Update table.js

数据表格ajax请求增加jsonp相关参数
This commit is contained in:
drgg62086 2022-07-04 12:43:01 +08:00 committed by GitHub
parent 29ab5efb57
commit 2b392ba6e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -835,7 +835,8 @@ layui.define(['laytpl', 'laypage', 'form', 'util'], function(exports){
,url: options.url
,contentType: options.contentType
,data: data
,dataType: 'json'
,dataType:options.dataType || 'json'
,jsonpCallback:options.jsonpCallback
,headers: options.headers || {}
,success: function(res){
// 若有数据解析的回调,则获得其返回的数据
@ -2324,6 +2325,7 @@ layui.define(['laytpl', 'laypage', 'form', 'util'], function(exports){
// 过滤与数据无关的参数
var dataParams = new RegExp('^('+ [
'data', 'url', 'method', 'contentType',
'dataType','jsonpCallback',
'headers', 'where', 'page', 'limit',
'request', 'response', 'parseData',
'scrollPos'