我創建一個投票以下JSON對象發佈JSON對象到WebService和處理它有
$("#btnSubmit").click(function() {
var poll = { 'q': $('#txtQuestion').val(), 'a': [] };
for (i = 1; i < counter; i++) {
var a = $('#txtAnswer_' + i).val();
poll.a.push(a);
}
$.ajax({
type: 'POST',
url: "../_ws/Polls.asmx",
data: JSON.stringify(poll),
contentType: 'application/json; charset=utf-8',
dataType: 'json'
});
});
基本上,這retreives一個問題文本框的值和答案文本框(動態創建)。結果是一個'民意調查'對象。
我想發送這個對象到一個web服務,如上所示。直到這裏沒有問題。我的問題是如何檢索這個json對象並在我的web服務中的函數中處理它?
<WebMethod()> _
<ScriptMethod()>
Public Function AddPoll(**??? as ???**) As String
End Function
如果有人能幫上忙,我將不勝感激。
您正在使用哪個版本的.NET? – 2012-03-08 20:53:37
我正在使用4.0版本 – 2012-03-08 20:54:52