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
//从URL获取参数 function getQueryString (name) { return decodeURIComponent((new RegExp('[?|&]'+name+'='+'([^&;]+?)(&|#|;|$)').exec(location.href)||[, ''])[1].replace(/+/g, '%20')) || null }
var url = "v2/api-docs"; //获取group的值 if(getQueryString("group")) { url += "?group=" + getQueryString("group"); }
修改docs.js中的ajax地址为上面的url,不知道管理有这样尝试过没
The text was updated successfully, but these errors were encountered:
你可以提交 pull request , 贡献你的代码
Sorry, something went wrong.
No branches or pull requests
//从URL获取参数
function getQueryString (name) {
return decodeURIComponent((new RegExp('[?|&]'+name+'='+'([^&;]+?)(&|#|;|$)').exec(location.href)||[, ''])[1].replace(/+/g, '%20')) || null
}
var url = "v2/api-docs";
//获取group的值
if(getQueryString("group")) {
url += "?group=" + getQueryString("group");
}
修改docs.js中的ajax地址为上面的url,不知道管理有这样尝试过没
The text was updated successfully, but these errors were encountered: