weixin_33724659 2013-11-21 12:24 采纳率: 0%
浏览 42

在MVC验证后执行Ajax

I have a form and in this form I have fields that are from a Model. The form is a modal-dialog from bootstrap. When i click on the submit button all fields must be valid. This works! Now i want to close the modal and refresh the page if the Model Validation is valid. Only the code does first the Ajax call and then the ModelState.IsValid in the Controller.

Ajax:

    $('#addAlertModal form').submit(function (e) {

        //TODO: if ModelState.IsValid in Controller
        refreshAlerts();
        closeAlertModal();
    });

Does somebody know what i can do about this? Or is this not possible?

EDIT:

Or is it possible to call Ajax functions inside the if:

        @if (ViewData.ModelState.IsValid) {
            //Call here the functions
            refreshAlerts(); //Error: The name 'refreshAlerts' does not exist in the current context
        }
  • 写回答

4条回答 默认 最新

  • 10.24 2013-11-21 12:34
    关注

    Try using ViewData.ModelState.IsValid in a view

    $('#addAlertModal form').submit(function (e) {
    
        @if (ViewData.ModelState.IsValid)
        {
             refreshAlerts();
            closeAlertModal();
    
        }
    });
    
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献