JSON データを返すコントローラー アクションがあります。getJSON メソッドを使用して簡単にアクセスできます。しかし、その JSON データを Web API 経由で取得したいと考えています。
私のコントローラーコードは
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);
}