Skip to content

Commit e2484e1

Browse files
committed
fix wenzhixin#121: Remove JSON.stringify
1 parent bc6101d commit e2484e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

issues/152.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ <h1>How to pass parameter to server(<a href="https://github.com/wenzhixin/bootst
6464
function postQueryParams(params) {
6565
params.your_param1 = 1; // add param1
6666
params.your_param2 = 2; // add param2
67-
return JSON.stringify(params); // body data
67+
return params; // body data
6868
}
6969
</script>
7070
</body>
71-
</html>
71+
</html>

0 commit comments

Comments
 (0)