gpt4 book ai didi

javascript - 在 jquery 验证中使用远程方法的问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:43 25 4
gpt4 key购买 nike

我正在关注 this文章以验证我的表单

我的问题是当我必须使用 remote 方法时,例如远程:“check-username.php”

documentation因为远程方法对我来说不是很清楚,我会知道:

我需要如何在 php 脚本中构造我的 json 输出?

最佳答案

要使用 remote 的默认方法,远程页面必须用字符串值 "true""false" 进行响应。

有效(成功)必须是:

echo "true";

无效(失败):

echo "false"; // this can be any false. eg: 0 , "" , NULL.

响应将被评估为 JSON。

要应用错误消息,而不是默认的远程响应无效(“false”),请将输入名称添加到验证器选项 messages 对象中,如下所示。

rules:{
username:{
remote: "check-username.php"
}
},
messages:{
username:{
remote: jQuery.format('{0} is already in use, please choose a different name')
}
}

关于javascript - 在 jquery 验证中使用远程方法的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16213712/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com