我在我的一页中使用 asp.net mvc 3。我需要从列表对象中获取字符串列表。所以我这样做:
@{
var orderIds = from s in Model.Orders
select s.id;
}
从我的一个ajax调用中,我需要“orderIds”
$("#renderBtn").click(function () {
var inputData = {
'orderIds': need to get the order ids here
};
$.ajax({
url: '/Order/ExtraData',
data: inputData,
type: 'POST',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (result) {
....
},
error: function () {
...
}
});
});
知道如何获取 orderIds 并在 javascripts 中使用吗?谢谢