我有一个返回 JSON 数据的控制器操作。它可以通过 getJSON 方法轻松访问。但我希望通过 Web API 检索 JSON 数据。
我的控制器代码是
public ActionResult GetProfile(string profileName)
{
var profileDataService = new BokingEngine.MasterDataService.GetProfileDataService();
var request = new ProfileSearchCriteria { Name = profileName };
var profileDetails = profileDataService.GetList(request);
return Json(profileDetails, JsonRequestBehavior.AllowGet);
}