We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zTree_v3/js/jquery.ztree.all.js
Line 1092 in be70dfa
当这样配置时,会导致服务响应出错:
type: 'GET', contentType: 'application/json; charset=utf-8',
请求变成了这样: http://ss.dev/api/query?{}&_=1628253644521
- data: setting.async.contentType.indexOf('application/json') > -1 ? JSON.stringify(tmpParam) : tmpParam, + data: setting.async.contentType.indexOf('application/json') > -1 ? (setting.async.type.toUpperCase() != 'POST'?$.param(tmpParam) : (Object.keys(tmpParam).length ? JSON.stringify(tmpParam) : '')) : tmpParam,
The text was updated successfully, but these errors were encountered:
感谢,等我抽空去测试更新
Sorry, something went wrong.
No branches or pull requests
zTree_v3/js/jquery.ztree.all.js
Line 1092 in be70dfa
当这样配置时,会导致服务响应出错:
请求变成了这样:
http://ss.dev/api/query?{}&_=1628253644521
问题点:
修复方法:
The text was updated successfully, but these errors were encountered: