struts2 ajax提交,令我崩溃的contentType:"application/json"

contentType:"application/json"

这个属性让我无奈,上一次是必须删掉才行,而现在,必须加上才可以,具体情况还要以后多实践才能得出结论。

这次的代码:

var datastr ="{/"message/":/"eeeeeeeeeee/",/"testObj/":{/"name/":/""+txtQuotationName.getValue()+"/"}}";
               //var str = Ext.encode(quota);
               alert(datastr);
               $.ajax({
                       url:'mbcaajax/quotationtest_execute',
                       contentType:"application/json",
                       type:'post',
                       data:datastr,
                       success:function(data){
                           alert(data.message);
                       }
               });

你可能感兴趣的:(struts2)