I'm trying to pass two parameters to an mvc controller from javascript. The first is a model and the second is a string.
Here is the html:
<input type="button" onclick="save(Json.Encode(@Html.Raw(model)), @Html.Raw(object.Id))" />
Here is the javascript:
function save(model, id) {
$.ajax({
url: '@Url.Action("SaveModel", "Test")',
type: "POST",
datatype: "json",
data: { model: model, id: id }
}
});
}
And here is the controller:
[HttpPost]
public ActionResult SaveModel(Model model, string id)
{
return null;
}
If I only pass the model parameter data: { model: model }, it works. The post of the request becomes something like this:
AProperty value1
AnotherProperty value2
AnArray[0][Property...
AnArray[1][Property...
etc.
But if I try to pass in both parameters data: { model: model, id: id } the post of the request becomes
model[AProperty] value1
model[AnotherProperty] value2
model[AnArray][0][Property...
model[AnArray][1][Property...
etc.
When the request reaches the controller the model object is instantiated, but all values has become null. I guess the serializer failed.
All help appreciated.