- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个“编辑用户表单”,以便在需要时更改用户数据。这些字段之一是 ID 号。除了 Codeigniter 的表单验证库之外,我还使用 jQuery 验证插件。
我的管理员中有这个 php 函数,用于检查为用户输入的 ID 是否已存在于数据库中。如果该 id 与用户存储在数据库中的 id 匹配,那就没问题了。但是当尝试输入另一个用户的 ID 时,会出现错误。如果尝试输入一个未存储在数据库中的 ID,那么应该没问题,并且不会显示任何错误。
我为此构建了一个运行良好的 php 函数。问题是当执行 jquery 函数来调用该 php 函数时。
这是 View :
<div class="span6">
<div class="control-group">
<label class="control-label">Número<span class="required">*</span></label>
<div class="controls">
<input type="text" name="documentn" id="documentn" class="m-wrap span8" value="{$frontuser->document}" required/>
<span class="help-block"></span>
</div>
</div>
</div>
这是 jquery 函数:
documentn: {
required: true,
minlength: 7,
maxlength: 20,
remote: {
url: '/admin/checkDocAndUser',
type: 'POST',
},
},
这是 PHP 函数:
public function checkDocAndUser(){
if ((isset($_POST['documentn'])) && (isset($_POST['id']))) {
$n = $_POST['documentn'];
$id = $_POST['id'];
$dn = UserManager::getInstance()->checkUserDocument($n,$id);
if ($dn) {
//id belongs to the user
echo "true";
}else{
//does the id entered belongs to another user?
$exists = UserManager::getInstance()->getByDocument($_POST['documentn']);
if (!$exists) {
// number entered belongs to another user
echo "false";
}
}
}
}
因此,当我不使用 js 验证文件时,php 函数可以工作...为什么 jquery 函数不起作用?
我尝试将远程规则 url 更改为:admin/checkDocAndUser、/checkDocAndUser、checkDocAndUser 但不起作用。
编辑和工作
考虑了 @Sparky 所说的内容,现在我正在发送用户 ID
documentn: {
required: true,
minlength: 7,
maxlength: 20,
remote: {
url: '/admin/checkDocAndUser',
type: 'POST',
data: {
id: function(){
var dn = $('#id').val();
return dn;
}
}
}
},
public function checkDocAndUser(){
if ((isset($_POST['documentn'])) && (isset($_POST['id']))) {
$dn = UserManager::getInstance()->checkUserDocument($_POST['documentn'],$_POST['id']);
if ($dn) {
//id belongs to the user
echo "true";
}else{
//does the id entered belong to another user?
$exists = UserManager::getInstance()->getByDocument($_POST['documentn']);
if (!$exists) {
// number entered belongs to another user
echo "true";
}else{
echo "false";
}
}
}
}
最佳答案
1) 验证您是否在页面上包含了 jQuery 验证插件。它需要包含在 jQuery 库之后。
2) 在您的 PHP 函数中,您似乎正在寻找两个 POST 输入:if ((isset($_POST['documentn'])) && (isset($_POST) ['id'])))
。但是,默认情况下,remote
方法仅发送来自您正在验证的字段 documentn
的数据。如果您需要发送另一个字段的值,则需要使用remote
...
data
选项对其进行配置
documentn: {
required: true,
// minlength: 7, // <- can be replaced with rangelength rule
// maxlength: 20, // <- can be replaced with rangelength rule
rangelength: [7,20], // <- can be used in place of two rules
remote: { // <- by default, only posts data from 'documentn' field
url: '/admin/checkDocAndUser',
type: 'POST',
data: { // <- also post data from another field(s)
anotherfield: function() { // <- post name, $_POST['anotherfield']
return $( "#another_field" ).val();
}
}
}
},
3)我不确定您的 checkDocAndUser
函数中的逻辑。当它不属于其他用户但存在时会发生什么?在这种情况下你没有回应任何事情。当验证应该通过时,remote
方法需要一个 true
以及一个 false
、undefined
或 null
当它应该失败时。如果它回显 JSON 字符串,则它会失败并且该字符串将成为错误消息。验证您的逻辑是否按照您的预期执行 as per the docs .
关于javascript - jQuery Validation 插件远程规则更改 php 函数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23999494/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!