我有一个注册表单,在提交时,验证分别匹配的密码和域名。如果为true,我试图通过ajax请求检查数据库中是否存在域名。
<div class="grid-6">
<p>
<label for="First Name">First Name:</label>
<input type="text" name="first_name" placeholder="James" required value="">
<label for="Last Name" name="lastname">Last Name:</label>
<input type="text" name="last_name" placeholder="Brown" required value="">
<label for="email">Email:</label>
<input type="email" name="email" placeholder="email@email.com" required value="">
<label for="Preferred Password">Preferred Password:</label>
<input id="og_password" type="password" name="password" required value="">
<label for="Confirm Password">Confirm Password</label>
<input id="confirm_password" type="password" name="password_confirm" required value="">
</p>
</div><!-- /grid-6-->
<div class="grid-6">
<p>
<label for="Domain Name">Domain Name <span class="italic red">(lowercase letters and numbers only - no spaces):</span></label>
<input id="domain_name_a" type="text" name="domain_name_a" placeholder="mystudioname" required value="">
<label for="Domain Name">Confirm Domain Name:</label>
<input id="domain_name_b" type="text" name="domain_name_b" placeholder="mystudioname" required value="">
</p>
</div>
JS
unction passwordMatch() {
var pass1 = $('#og_password').val();
var pass2 = $('#confirm_password').val();
var domain1 = $('#domain_name_a').val();
var domain2 = $('#domain_name_b').val();
var error = true;
if(pass1 != pass2){
alert("Your passwords do not match!");
return false; // cancel form submission if passwords don't match
}
if(domain1 != domain2){
alert("Your domain names do not match!");
return false;
}
//no errors check DB for domain exits
checkDomain(domain1);
}
function checkDomain(domain) {
alert(domain);//testing only
$.ajax({
type:"POST",
url: "/actions/domain.php",
data: {
domain:domain
}
success: function(result) {
if(result = false) {
alert(result);
} else {
alert(result);
}
}
});
}
通过警报(域)运行良好,警报返回正确的值。问题出在domain.php文件的某个地方,返回,或者只是简单地使用了.ajax。这是php
PHP
<?php
require_once("../includes/connection.php");
$domainName = $_POST['domain'];
$sql = "SELECT domain_name
FROM user
WHERE domain_name = '{$domainName}'
";
$run = mysqli_query($mysqli, $sql);
$result = mysqli_fetch_assoc($run);
echo $result['domain_name'];
?>
对于我在这方面出错的任何帮助都不胜感激。
谢谢!
答案 0 :(得分:2)
您ajax Request
中的数据和成功函数之间似乎缺少逗号。
data: {
domain:domain
} , < -- Missing comma here
success: function(result) {
答案 1 :(得分:1)
如果这是您的代码的直接副本 - 您在数据后面的ajax调用中缺少逗号:{},&lt; - 就在那里。
另外,从成功语句中删除if ... else,因为它也没有正确完成(你通过使用一个等号来测试一个值,所有这一切只是声明你正在尝试的值测试反对)。只需尝试:success: function(result) { console.log(result); alert(result); }
,看看你得到了什么。
答案 2 :(得分:0)
由于某些奇怪的原因,jQuery无法通过缩短的网址识别该文件。
解决方案是输入整个网址 - &gt;不仅是smtg / smtg.php,还有 http://www.domain.com/smtg/smtg.php 。
此外,你可以尝试通过在你的ajax调用中添加以下代码行来发送json格式的数据:“ dataType:'json',”然后从php文件中输出这个:“ echo json_encode(”返回值“); ”