为了账号安全,请及时绑定邮箱和手机立即绑定

如何同时进行客户端和服务器端验证?

如何同时进行客户端和服务器端验证?

PHP
慕桂英3389331 2023-04-21 15:46:48
我正在创建一个 HTML 表单,我在其中进行客户端和服务器端验证。我使用了以下代码。<form action='logic.php' method='post' id='login'>    <input type='text' placeholder='Enter name' name='name'>    <input type='submit'></form>// Jquery$(document).ready(function(){    function validate_name(input_id,error_id,msg="Name"){        const x = document.getElementById(input_id).value;        const y = document.getElementById(error_id);        const pattern = /^[a-zA-Z]+$/        if(x!==""){            if(pattern.test(x) ){                if(x.length<3 || x.length>10){                    y.innerHTML = msg+' should be between 3 and 10 characters.'                    return false;                }                else{                    y.innerHTML = '';                    return true;                }            }            else{                y.innerHTML = 'Should contain only alphabets.'                return false;            }        }        else{            y.innerHTML = "Please Enter Your "+msg;            return false;        }    }    $('#login').submit(function(e){        e.preventDefault();        let name = validate_name('rollno','rerror');        let subject_name = validate_select('subject_dropdown','serror');        if(name === true & subject_name === true){            window.location = 'controller/indexPage_logic.php';        }    })});我可以进行客户端验证,但如果表单得到正确验证,我将无法在服务器端 PHP 中使用 $_POST['name'] 访问输入值。我认为这是由于 window.location。是否存在有没有更好的方法来进行双方验证?
查看完整描述

3 回答

?
临摹微笑

TA贡献1982条经验 获得超2个赞

在表单的操作参数中设置正确的文件。

在 if 条件中,写e.currentTarget.submit();

if(name === true & subject_name === true){
    e.currentTarget.submit();
}


查看完整回答
反对 回复 2023-04-21
?
海绵宝宝撒

TA贡献1809条经验 获得超8个赞

当您需要 POST 时,您的位置更改会执行 GET


改成


$('#login').submit(function(e){

    e.preventDefault();

    let name = validate_name('rollno','rerror');

    let subject_name = validate_select('subject_dropdown','serror');

    if(name === true & subject_name === true){

        $.post('controller/indexPage_logic.php', {name:rollno}, function(response) { console.log(response)}); // do what you need to do when valid on the server too

    }

})


查看完整回答
反对 回复 2023-04-21
?
POPMUISE

TA贡献1765条经验 获得超5个赞

您必须将您的数据发送到服务器,问题是 window.location 没有向服务器发送任何请求以便能够协助使用


$.post('url to the server', { data1 : "Your data", data2 : yourvar }, function(res) {

   console.log(res)

});


查看完整回答
反对 回复 2023-04-21
  • 3 回答
  • 0 关注
  • 126 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信