如何将JavaScript字典传递给动作结果?

时间:2010-08-18 04:35:04

标签: javascript jquery ajax asp.net-mvc-2

我有一个java脚本字典。它的dictionary<string,dictionary<string,string>>是否有用。 我不能使用jquery,ajax将它传递给控制器​​类 有没有办法做到这一点?

<script language="javascript" type="text/javascript">
 var dictionary = {};
  var props = {};
props["test1"]="test1";
props["test2"]="test2";
props["test3"]="test3";
dictionary["test"]=props;

function SaveForm() {
 $.ajax({
     type: 'POST',
     url: '/Home/SaveForm',
     data: { formName: $('#formName').val(),  dics: dictionary },
     //contentType: 'application/json'
     dataType: 'json'

 });
}


</script>


public void SaveForm(  Dictionary<string,<string,string>>dics)===> dics is null always

0 个答案:

没有答案