列表通过ASP.Net MVC中的Ajax传递

列表通过ASP.Net MVC中的Ajax传递,第1张

列表通过ASP.Net MVC中的Ajax传递

假设

TradelaneDetailViewModel
包含属性
id
color
,则脚本需要

var items = [];for (var i = 0; i < 5; i++) {    items.push({ id: i, color: 'Level' + i });}$.ajax({    url: '@Url.Action("test123", "ConfigurableTradeLane")',    type: 'POST',    contentType: 'application/json; charset=utf-8',    data: JSON.stringify({ viewmodel: items }),    success: function (data) {       //alert("success");    },    error: function (jqXHR, exception) {        alert('Error message.');    }});


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5030889.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存