这是我的路线:
routes.MapHttpRoute(name: "InsertOrUpdateDirector", routeTemplate: "api/awards/directors", defaults: new
{
controller = "Awards", action = "InsertDirector"
});
这是控制器方法:
[HttpPost]
public void InsertOrUpdateDirector(Director director, string operation)
{
string query = null;
myConnection.Open();
if (operation == "I")
{
query = "INSERT INTO...";
}
else if (operation == "U")
{
query = "UPDATE...";
}
var cmd = new SqlCommand(query, myConnection);
cmd.ExecuteNonQuery();
myConnection.Close();
}
如果我向上面发送一个 JSON 对象,它就可以工作。
现在我需要能够传递 JSON 对象以及字符串参数。
这是仅传递 JSON 对象的 AJAX 调用:
$.ajax({
url: "http://localhost/x/api/awards/directors",
type: "POST",
dataType: "json",
data: directorData
}).done(function () {
detailRow.find(".directorsOrRecipients").data("kendoGrid").refresh();
});
我的问题是,在这种情况下,如何将 JSON 对象以及字符串“I”传递给控制器?
directorData
顺便说一下,是一个 JSON 对象。