hot category data with _
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -216,7 +216,7 @@ function reMarginFooter(fixedElement) { | @@ -216,7 +216,7 @@ function reMarginFooter(fixedElement) { | ||
216 | jsonData = { | 216 | jsonData = { |
217 | page: bpIdArr[0], | 217 | page: bpIdArr[0], |
218 | floor: bpIdArr[1], | 218 | floor: bpIdArr[1], |
219 | - data: bpIdArr[2] | 219 | + data: bpIdArr.slice(2).join('_') //防止值字符串中有_导致的问题 |
220 | }; | 220 | }; |
221 | if (window._yas.sendCustomInfo) { | 221 | if (window._yas.sendCustomInfo) { |
222 | window._yas.sendCustomInfo(jsonData, Boolean(parseInt(bpIdArr[3]) || 1)); | 222 | window._yas.sendCustomInfo(jsonData, Boolean(parseInt(bpIdArr[3]) || 1)); |
-
Please register or login to post a comment