1.
ajax代码:
$.ajax({
async: false,
cache: false,
type: 'POST',
contentType: "application/json",
url: "/MsgTypeTemItem/GetAllStr", //请求的action路径
data:{temId:$("#temId").val()},
error: function () {//请求失败处理函数
alert('请求失败');
},
success: function (data) { //请求成功后处理函数。
data = "[" + data + "]";
treeNodes = eval(data);
}
});
Controller代码:
public string GetAllStr(string id)
{
List<MsgTypeTemItem> allList = msgTypeItemService.GetAll();
return "";
}