📜  从 Javascript ajax 调用 MVC 控制器 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:09.047000             🧑  作者: Mango

代码示例2
public class AjaxTestController : Controller
{
    //
    // GET: /AjaxTest/
    public ActionResult Index()
    {
        return View();
    }

    public ActionResult FirstAjax()
    {
        return Json("chamara", JsonRequestBehavior.AllowGet);
    }   
}