我试图让(一个客户电话和家属)的项目清单,例如,用户可能包括一些数量的手机,并删除其他人(如果可能的话,也许编辑),如客户的记录内的列表。
我想知道我怎么能做到这一点在客户端并获得服务器端列表中? 是否有一个jQuery插件或做一个最好的初步实践?
PS:我使用ASP.Net MVC 2。
我试图让(一个客户电话和家属)的项目清单,例如,用户可能包括一些数量的手机,并删除其他人(如果可能的话,也许编辑),如客户的记录内的列表。
我想知道我怎么能做到这一点在客户端并获得服务器端列表中? 是否有一个jQuery插件或做一个最好的初步实践?
PS:我使用ASP.Net MVC 2。
我把这个例子身边让我开始,只是把正确的东西在正确的文件和编辑它来搭配你在做什么:
/ *在这种情况下,我使用* /
available at: http://www.json.org/js.html
function jsonObject()
{
};
var phoneListObject = new jsonObject();
function SaveJsonObject()
{
phoneListObject.Control = new jsonObject();
phoneListObject.Control.CustomerId = $("#CustomerId").val();
phoneListObject.Control.CustomerName = $("#CustomerName").val();
phoneListObject.ListBody.PhonesBlock = new jsonObject();
phoneListObject.ListBody.PhonesBlock.Phone = new Array();
$('#PhonesBlock .Phone').each(function(myindex)
{
phoneListObject.ListBody.PhonesBlock.Phone[myindex].PhoneNumber = $(".PhoneNumber input", this).val();
phoneListObject.ListBody.PhonesBlock.Phone[myindex].PhoneName = $(".PhoneName input", this).val();
});
};
$(function()
{
function SaveCurrentList()
{
SaveJsonObject();
var currentSet = phoneListObject;
var formData = { FormData: currentSet };
phoneListJSON = JSON.stringify(formData);
var FormData = "{ FormData:" + JSON.stringify(phoneListJSON) + "}";
SavePhoneListData(FormData);
};
function SavePhoneListData(phonesData)
{
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
data: phonesData,
dataFilter: function(data)
{
var msg;
if ((typeof (JSON) !== 'undefined') &&
(typeof (JSON.parse) === 'function'))
msg = JSON.parse(data);
else
msg = eval('(' + data + ')');
if (msg.hasOwnProperty('d'))
return msg.d;
else
return msg;
},
url: "../../WebServices/ManagePhones.asmx/SaveJson",
success: function(msg)
{
SaveSuccess(msg);
},
complete: function(xhr, textresponse)
{
var err = eval("(" + xhr.responseText + ")");
},
error: function(msg)
{
},
failure: function(msg)
{
}
});
};
$('#btnSave').click(function()
{
SaveCurrentList();
});
});
/ * JSON数据剪断* /
{"FormData":{"Control":{"CustomerId":"12345y6","CustomerName":"Joe Customer"},"PhonesBlock":{"Phone":[{"PhoneNumber":"234-233-2322","PhoneName":"son harry"},{"PhoneNumber":"234-233-2323","PhoneName":"son frank"},{"PhoneNumber":"234-233-2320","PhoneName":"momk"}]}}}
表格数据的 / XML:/
<FormData>
<Control>
<CustomerId>12345y6</CustomerId>
<CustomerName>Joe Customer</CustomerName>
</Control>
<PhonesBlock>
<Phone>
<PhoneNumber>234-233-2322</PhoneNumber>
<PhoneName>son harry</PhoneName>
</Phone>
<Phone>
<PhoneNumber>234-233-2323</PhoneNumber>
<PhoneName>son frank</PhoneName>
</Phone>
<Phone>
<PhoneNumber>234-233-2321</PhoneNumber>
<PhoneName>momk</PhoneName>
</Phone>
</PhonesBlock>
</FormData>
/ *表单布局剪断* /
<div class="control">
<div class="customer">
<input typeof="text" id="CutomerId" />
<input typeof="text" id="CutomerName" />
</div>
<div class="phoneslist" id="PhonesBlock">
<div class="Phone">
<input typeof="text" class="PhoneNumber" />
<input typeof="text" class="PhoneName" />
</div>
<div class="Phone">
<input typeof="text" class="PhoneNumber" />
<input typeof="text" class="PhoneName" />
</div>
<div class="Phone">
<input typeof="text" class="PhoneNumber" />
<input typeof="text" class="PhoneName" />
</div>
</div>
</div>
<input id="buttonSave" class="myButton" type="button" value="Save" />
Web服务方法的签名:
[的WebMethod(EnableSession =真)]公共字符串SaveJson(串FORMDATA){}
连载中的数据到像JSON格式,然后将其发送到服务器作为字符串。
当我必须学习它,这些帖子都是非常有用的。
http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/ http://encosia.com/2008/03/27/using-jquery-用消费-ASPNET,JSON的Web服务/
您可以连载一个javascript数组转换成一个字符串,ASP.Net可以deserialise。
有一个叫标准JSON这是很好的,因为它增加了几乎无噪音上的实际数据(如XML确实,增加了大量的数据量传输)。
然后,您可以用$.ajax
jQuery的方法来将此数据发送到您所创建(见链接),并得到一个可以理解的响应返回一个WebMethod。
编辑 :如果你已经是这里面的东西,你可以简单地使用JSON.stringify()
方法,传递对象/数组中它连载。