使用Ajax POST验证

时间:2016-07-06 07:41:32

标签: javascript php jquery ajax validation

我有一个使用Ajax设置为POST的表单。目前我的验证基本上是这个功能:

// Function for making all fields required
$(function(){
    $("input").prop('required',true);
});

这很好用,但是由于我的表单的某些部分是根据选择的先前答案使用CSS隐藏的 - 我在控制台中的所有隐藏字段都会出现以下错误:

An invalid form control with name='providerName' is not focusable.

是否有更简单的方法可以向Ajax表单添加验证,可能需要更多控制?

E.g。某些字段需要链接 - 我想我可以验证输入是否具有“链接结构”

我的Ajax POST代码示例:

// Wait for the DOM to be loaded 
$(document).ready(function() {

    // Make sure New Provider is unchecked by default   
    document.getElementById("typeNew").checked = false;

    // Variable to hold request
    var request;

    // Bind function to form submit event
    $("#createPanelForm").submit(function(event){

        // Abort any pending request
        if (request) {
            request.abort();
        }

        // Setup local variable
        var $form = $(this);

        // Select and cache form fields
        var $inputs = $form.find("projectName, projectLink, type, providerName, completeLink, quotaFullLink, screenoutLink, existingProvider");

        // Serialize the data in the form
        var serializedData = $form.serialize();

        // Disable the inputs for the duration of the Ajax request
        // Disabled form inputs will not be serialized.
        $inputs.prop("disabled", true);

        // Send the request
        request = $.post({
            url: "actions/createpanel.action.php",
            method: "POST",
            data: serializedData,
            function(result){
                alert(result);
            }
        });

        // Callback handler for successful request
        request.done(function (response, textStatus, jqXHR){
            // Log data to console
            console.log(serializedData);
            console.log(response);
            document.getElementById('submitSuccess').style.display = 'block';
        });

        // Callback handler for failed request
        request.fail(function (jqXHR, textStatus, errorThrown){
            // Log the error to console
            console.error("Error: "+textStatus, errorThrown);
            document.getElementById('submitError').style.display = 'block';
        });

        // Callback handler for both outcomes
        request.always(function () {
            // Reenable the inputs
            $inputs.prop("disabled", false);
        });

        // Prevent default form posting
        event.preventDefault();

        // Hide form and show response
        $("#createPanelForm").fadeOut(1000);
        $("#submitResponse").delay(1001).fadeIn(1000);      
    });

})

1 个答案:

答案 0 :(得分:0)

向表单添加novalidate属性将有所帮助:

$scope.$on('event', (event, {a,b}) => {
 // access them just as a, b
});
相关问题