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
image-dialog.js 第37行,原代码: var action = settings.imageUploadURL + "?guid=" + guid; 要再加个判断,如下: var action = settings.imageUploadURL + (settings.imageUploadURL.indexOf('?') >= 0 ? "&" : "?") + "guid=" + guid;
image-dialog.js
var action = settings.imageUploadURL + "?guid=" + guid;
var action = settings.imageUploadURL + (settings.imageUploadURL.indexOf('?') >= 0 ? "&" : "?") + "guid=" + guid;
The text was updated successfully, but these errors were encountered:
嗯,已标记,稍后修正,谢谢你的指正。
Sorry, something went wrong.
@v1.4.1 fixed.
No branches or pull requests
image-dialog.js
第37行,原代码:var action = settings.imageUploadURL + "?guid=" + guid;
要再加个判断,如下:
var action = settings.imageUploadURL + (settings.imageUploadURL.indexOf('?') >= 0 ? "&" : "?") + "guid=" + guid;
The text was updated successfully, but these errors were encountered: