私のjsonデータは
{"postData":[{"itemId":"mcw750","currentQty":"90","saleQty":"8","unitPrice":"100","salePrice":"800"}]}
var postData = JSON.stringify(data);
alert("The following data are sending to the server:\n"+postData);\\here i m getting all values..
$.ajax({
type: "POST",
url: "http://localhost:7001/Final_Subgrid2/jsonaction.action",
dataType:"JSON",
data:postData,
traditional: true,
contentType: "application/json; charset=utf-8",
success: function(response, textStatus, xhr) {
alert("success");
},
error: function(xhr, textStatus, errorThrown) {
alert("error");
}
});
Action クラスには、setter と getter を持つ public List postData があります。アクション クラスで null データを取得する理由を教えてください。
私は従業員pojoクラスを持っています.(itemId、currentQty、saleQty、unitPrice、totalPrice)更新されたjqgridデータをアクションクラスに送信すると、null値が取得されます..私のjsonデータは大丈夫で、ajaxはアクションに適切なデータを送信しています(firebugに見られるように) )
私のアクション マッピングは .
それでも null 値を取得しています 適切な方向に導いてください
ついに私は私の問題を解決しました..私を助けてくれてありがとう..