Skip to content

Commit

Permalink
fix(core): fixed $route params
Browse files Browse the repository at this point in the history
  • Loading branch information
dlhandsome authored and Gcaufy committed Sep 29, 2018
1 parent fbd85bc commit f73441d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/weapp/class/WepyPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class WepyPage extends Base {
if (isObj(params)) {
for (let k in params) {
if (isObj(params[k])) {
s += `${k}=${encodeURIComponent(params[k])}`;
paramsStr += `${k}=${encodeURIComponent(params[k])}`;
}
}
} else if (isStr(params) && params[0] === '?') {
Expand Down

0 comments on commit f73441d

Please sign in to comment.