存在我需要驗證電子郵件ID氣象其存在與否電子郵件jQuery驗證在laravel
我曾嘗試這個代碼,但它無法正常工作,並在檢查元素,它顯示:
jquery- 1.10.2.js:8706
http://localhost/selfcomply/public/admin/companymaster/check_email.php POST 405(不允許的方法)和
MethodNotAllowedHttpException在RouteCollection.php線218:
validation.js文件
$("#companydata").validate
({
rules: {
company_email:{
required: true,
emailer: true,
remote:{
url:"check_email.php",
type:"post"
}
},
messages:{
company_email:{
required: "Please enter the email address ",
remote:"Already Exist"
},
}
});
check_email.php
$email = "'".$_POST["emails"]."'";
$showmember = DB::select(DB::raw("SELECT count(company_email) as countemail FROM tbl_company_master WHERE company_email = ".$email.""));
if($showmember[0]->countemail > 0)
{
return "false";
}
else
{
return "true";
}
天氣我需要給路徑route.php或沒有,但我不這麼認爲
該錯誤意味着您正在嘗試對請求執行POST操作,但路由不允許任何POST請求。你使用Laravel嗎?如果是這樣,請在此處轉儲您的路線或路線文件。 –
我還沒有在route.php中寫過任何路線@DeesOomens – ratnesh