Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
yyq
8 years ago
Commit
184443255e2c67b21e4c91d5cd5257c5ae51f4b0
2 parents
7be333ae
19ecbd02
Merge branch 'feature/suggestItem' of git.yoho.cn:fe/yohobuy-node into feature/suggestItem
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
apps/product/models/search-handler.js
apps/product/models/search-handler.js
View file @
1844432
...
...
@@ -10,6 +10,7 @@ const _ = require('lodash');
const
helpers
=
global
.
yoho
.
helpers
;
const
crypto
=
global
.
yoho
.
crypto
;
const
queryString
=
require
(
'querystring'
);
const
logger
=
global
.
yoho
.
logger
;
const
indexUrl
=
{
boys
:
helpers
.
urlFormat
(
'/'
),
girls
:
helpers
.
urlFormat
(
'/woman'
),
...
...
@@ -1690,7 +1691,12 @@ exports.getSearchParams = params => {
/** 查询参数再处理 **/
// 对可能有中文的情况进行处理
if
(
params
.
query
)
{
params
.
query
=
decodeURIComponent
(
params
.
query
);
try
{
params
.
query
=
decodeURIComponent
(
params
.
query
);
}
catch
(
e
)
{
logger
.
info
(
e
);
}
}
return
Object
.
assign
({},
params
,
nparams
);
...
...
Please
register
or
login
to post a comment