为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用JSON,jQuery向ASP.NET MVC Controller发布复杂对象数组?

如何使用JSON,jQuery向ASP.NET MVC Controller发布复杂对象数组?

慕田峪9158850 2019-08-15 15:28:00
如何使用JSON,jQuery向ASP.NET MVC Controller发布复杂对象数组?我当前的代码如下所示。如何将我的数组传递给控制器以及控制器操作必须接受哪种参数?function getplaceholders() {     var placeholders = $('.ui-sortable');     var result = new Array();     placeholders.each(function() {         var ph = $(this).attr('id');         var sections = $(this).find('.sort');         var section;         sections.each(function(i, item) {             var sid = $(item).attr('id');             result.push({ 'SectionId': sid, 'Placeholder': ph, 'Position': i });         });     });     alert(result.toString());     $.post(         '/portal/Designer.mvc/SaveOrUpdate',         result,         function(data) {             alert(data.Result);         }, "json");};我的控制器动作方法看起来像public JsonResult SaveOrUpdate(IList<PageDesignWidget> widgets)
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 573 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信