ajax - 如何在 View 页面上显示服务器端验证错误

标签 ajax grails sammy.js

因为我正在研究 grails 框架但不使用 Controller 。我的应用程序是“单页应用程序”。我不想重新加载我的页面,所以我编写了服务,即带有 Ajax 调用的 RegistrationService。所以我使用淘汰赛进行数据绑定(bind)。数据库使用的是 postgresql 。
我有一个查看页面,其中有一个电子邮件字段。当我输入重复的电子邮件 ID 并单击“保存”按钮时,我会看到一个验证错误,即“电子邮件已被占用”,但即使我正在编写一个唯一的 ID,我也会收到相同的验证错误。这是因为它在 modalModal.js 页面中处于错误状态,所以我不知道如何解决这个问题。我只想要当我输入唯一 ID 并单击保存按钮时,它不应该给出验证错误。

_newCostingpage.gsp  (my view page)

    <div id="light" class="white_content" style="color: black;">
    <form action="#/cart" method="post">
    <input type="hidden" name="url" value="${grailsApplication.config.serverURL}"/>
    <p><label>first name:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input name="firstName"
             class="formElement" data-bind='value: firstName'/></label></p>
    <p><label>last name:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input name="lastName" 
              class="formElement" data-bind='value: lastName' /></label></p>
    <p><label>organisation: <input name="organisation" class="formElement" data-
              bind='value: organisation' /></label></p>
<p><label>email:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
      <input name="email" class="formElement" data-bind='value: email' /></label><label 
         id="errorDiv"></label></p>
<p><label>password:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="password" name="password"
         class="formElement" data-bind='value: password' /></label></p>
 <p><label style="margin-left: -37px;">confirm password:</label> <input
        type="password" name="confirmPassword" class="formElement" data-bind='value:
        confirmPassword' /></p>
 <p><input type="submit" value="register"/></p>
</form>
 <a href="javascript:void(0)"onclick="document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none';clearBox();">Close</a>
        </div>
        <div id="fade" class="black_overlay"></div>
    </div>

Domain class :-\

  class Registration {
String firstName
String lastName
String organization
String email
String password
String confirmPassword

static constraints = {
    firstName(nullable:false)
    lastName(nullable:true)
    organization(blank:false)
    email(nullable:false,email:true,unique:true)
    password(blank:false)
    confirmPassword(blank:false)
               }
            }

modalModal.js
var ratPack = $.sammy(function() {
this.post('#/cart', function() {
    var firstname = this.params['firstName'];
    var lastName = this.params['lastName'];
    var organisation = this.params['organisation'];
    var email = this.params['email'];
    var password = this.params['password'];
    var confirmPassword = this.params['confirmPassword'];
    var baseurl = this.params['url'];
    $.ajax({
        type : 'POST',
        url :'http://localhost:9191/guido-rest-
                          resource/api/registration/'+firstname+'/'+lastName+'/'+email,
        success : function() {
            alert("success:");
        },
        error:function(){
           $('#errorDiv').text("Email has already been taken");
        }
    });
    });
      });
        $(function() {
       ratPack.run();
        });
        function clearBox(){
       $('.formElement').val("");
       }


   RegistrationResource.groovy

         package common.rest.resourcepl
         import static org.grails.jaxrs.response.Responses.*
         import javax.ws.rs.Consumes
         import javax.ws.rs.GET
         import javax.ws.rs.Produces
         import javax.ws.rs.Path
       import javax.ws.rs.PathParam
       import javax.ws.rs.POST
      import javax.ws.rs.core.Response
      import common.servicepl.RegistrationService
     @Path('/api/registration')
       class RegistrationResource {
   @GET
   @Produces('text/plain')
   String getRegistrationRepresentation() {
    'Registration'
    }
   def registrationService;
    @POST
    @Path('/{firstname}/{lastName}/{email}')
    Response create(@PathParam('firstname') String firstname,
                @PathParam('lastName') String lastName,
                @PathParam('email') String email) {
                return  
        RegistrationService().createRegistration(firstname,lastName,email);
  }
     }

     RegistrationService.groovy

         package common.servicepl
         import common.persistencepl.Registration
         class RegistrationService {
              def createRegistration(String firstName,String lastName,String email) {
        println "Inside Registration Service"
        def reg = new Registration();
        reg.firstName = firstName;
        reg.lastName = lastName;
        reg.password = "asdf";
        reg.confirmPassword = "asdf";
        reg.email = email;
        reg.organization = "fasdf";
        if(reg.save([flush:true])){
           return true
        }
        else
        {
          return false
        }
          }
         }

最佳答案

服务器应在响应中包含服务器端错误。

使这些错误消息成为 viewmodal 的属性,并将其绑定(bind)到样式正确的 html 段。

此外,当您从同一个应用程序调用服务时,不要指定完整路径,如 http://localhost... , 相对于您当前的页面指定它/api/registration...

关于ajax - 如何在 View 页面上显示服务器端验证错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13645259/

相关文章:

grails - Grails:按名称查找域类

jquery - MVC 与 Ajax 和 jQuery 表单提交问题

javascript - jquery AjaxSubmit函数如何从表单页面获取结果进行显示

javascript - 使用ajax访问delicious api时出现问题

javascript - 如何自定义此 Google 条形图?

grails - 如何使用 Grails/Spring Security Core 强制以编程方式注销?

email - 如何覆盖Grails邮件插件中的 'From'参数

json - SammyJS 从 http 加载 json

sammy.js - 如何从没有尾部斜杠的页面重定向到有尾部斜杠的页面

javascript - 使用 hashbang 防止用户在单页应用程序中离开路线