Skip to content

Commit

Permalink
请求参数解码
Browse files Browse the repository at this point in the history
  • Loading branch information
renbuzhudek committed May 9, 2019
1 parent 0c7c060 commit 99871ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/vconsole.min.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/network/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ class VConsoleNetworkTab extends VConsolePlugin {
query = query.split('&'); // => ['b=c', 'd=?e']
for (let q of query) {
q = q.split('=');
item.getData[ q[0] ] = q[1];
item.getData[ q[0] ] = decodeURIComponent(q[1]);
}
}

Expand Down

0 comments on commit 99871ff

Please sign in to comment.