JS Post 传参

Posted Q & L

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS Post 传参相关的知识,希望对你有一定的参考价值。

JS Post 传参

1 $.post("/Article/GetMoreChildComment", { articleid: articleId, prentcommentid:prentcommentid, page: childpage, pagesize: childpagesize }, function (result) {
2             childcomments = result.result;
3             debugger;
4             setTimeout(setchildcomment(thisa, index),2000);
5             childpage++;
6         });

 

Controller 接受并返回参数

 1         /// <summary>
 2         /// 获取评论子评论
 3         /// </summary>
 4         /// <param name="articleid"></param>
 5         /// <param name="prentcommentid"></param>
 6         /// <param name="page"></param>
 7         /// <param name="pagesize"></param>
 8         /// <returns></returns>
 9         [HttpPost]
10         public JsonResult GetMoreChildComment(long articleid,long prentcommentid, int page, int pagesize)
11         {
12 
13             List<ChildCommentDto> model = _commentManeger.GetChildCommentListByParentId(articleid, prentcommentid, page, pagesize, "CreationTime DESC");
14             return Json(model);
15         }

 

以上是关于JS Post 传参的主要内容,如果未能解决你的问题,请参考以下文章

js前台页面与后台如何传参

axios的post传参时,将参数转为form表单格式

wx.request中POST方法传参问题,用到JSON.stringify()

Django + Axios & Ajax post和get 传参

discuz X3.1 源代码阅读,记录代码片段

mybatis动态sql片段与分页,排序,传参的使用