我有一个从getJSON方法调用的http控制器。它的工作非常好。但是现在我想在控制器方法中执行与处理程序相同的操作。我通过getJSON将值发送给处理程序,并使用该值执行。
这是我的getJSON
$(document).ready(function () {
$.getJSON('ProfileHandler.ashx', { 'ProfileName': 'Profile 1' }, function (data) {
$.each(data, function (k, v) {
alert(v.Attribute+' : '+v.Value);
});
});
});
这是我的处理程序
public void ProcessRequest(HttpContext context)
{
try
{
string strURL = HttpContext.Current.Request.Url.Host.ToLower();
//string ProfileName = context.Request.QueryString["profilename"];
string strProfileName = context.Request["ProfileName"];
GetProfileDataService GetProfileDataService = new BokingEngine.MasterDataService.GetProfileDataService();
IEnumerable<ProfileData> ProfileDetails = GetProfileDataService.GetList(new ProfileSearchCriteria { Name = strProfileName });
JavaScriptSerializer javaScriptSerializer = new JavaScriptSerializer();
string strSerProfileDetails = javaScriptSerializer.Serialize(ProfileDetails);
context.Response.ContentType = "text/json";
context.Response.Write(strSerProfileDetails);
}
catch
{
}
}
如何调用并将'ProfileName'传递给控制器方法?
答案 0 :(得分:3)
您的代码是正确的,您应该能够使用以下内容检索ProfileName:
string strProfileName = context.Request["ProfileName"];
如果您想将其传递给控制器操作,只需定义此操作:
public ActionResult SomeAction(string profileName)
{
var profileDataService = new BokingEngine.MasterDataService.GetProfileDataService();
var request = new ProfileSearchCriteria { Name = profileName };
var profileDetails = profileDataService.GetList(request);
return Json(profileDetails, JsonRequestBehavior.AllowGet);
}
然后使用AJAX调用您的控制器操作:
<scirpt type="text/javascript">
$(document).ready(function () {
var url = '@Url.Action("SomeAction")';
$.getJSON(url, { profileName: 'Profile 1' }, function (data) {
$.each(data, function (k, v) {
alert(v.Attribute + ' : ' + v.Value);
});
});
});
</script>
答案 1 :(得分:0)
你几乎拥有它。这是一个例子:
<强>的Javascript 强>
function someFunction(e) {
$.post("@Url.Action("MethodName", "ControllerName")", { ParameterName: e.value }, function(data) {
$("#someDiv").html = data;
});
}
C#Controller
[HttpPost]
public ActionResult MethodName(string ParameterName)
{
return "Hello " + ParameterName;
}
如果您将您的名字传递给JavaScript函数“someFunction”,控制器将返回“Hello [您的名字]”。帮助