We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18b9d9f commit b97f914Copy full SHA for b97f914
1 file changed
js/app.js
@@ -229,7 +229,7 @@ function getJsonParam() {
229
function getUrlAuthor() {
230
const params = new URLSearchParams(window.location.search);
231
const author = params.get('author');
232
- return author ? decodeURIComponent(author) : null;
+ return author ? decodeURIComponent(author).split(',').map(k => k.trim()).filter(k => k) : null;
233
}
234
235
// 从URL参数中获取keywords
0 commit comments