Merge pull request #1065 from drgg62086/main

数据表格 ajax 请求增加 jsonp 相关参数
This commit is contained in:
贤心 2022-07-05 11:56:02 +08:00 committed by GitHub
commit 63985bd509
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'