SugarCRM 6.5 CE 如何使用 ajax 正确验证表单数据?

SugarCRM 6.5 CE how to properly validate form data using ajax?

我需要检查字段 phone_mobile 是否复制到数据库中。如果字段值不重复,则继续保存。 如果数据库中已经存在这样的phone,则显示警报消息并停止进程(表单提交)。

我的操作:

在文件./modules/Contacts/metadata/editviewdefs.php中连接自定义js文件:

$viewdefs['Contacts']['EditView'] = array(
'templateMeta' => array(
    'includes' => array (
            array (
                'file' => 'custom/include/javascript/custom_contact.js'
            ),
        ),
    'form'=>array(
    ...

效果很好。

custom_contact.js文件重载check_form(formname)函数中:

function check_form(formname)
{
    if(formname === 'correct')
    {
       // This part does not work right for me
        var _form = document.getElementById('EditView');
        _form.action.value='Save'; 
        SUGAR.ajaxUI.submitForm(_form);
        return false;
    }
    if(formname === 'EditView')
    {
        // Ajax query works perfectly
        $.ajax({
            url : '/',
            method : 'POST',
            data : {},// some data
            success : function(data) {
                data = JSON.parse(data);
                if(!data.success)
                {
                    var text = 'The phone already exists';
                    return false;
                }
                check_form('correct');
            }
        });
    }
    return false;
}

但是 if(formname === 'correct') ... 块无法正常工作。

我需要停止 form_save 的工作并在必要时加入。

请帮助解决问题correctly.I我是 SugarCRM 的新手。

这与 javsacrip/jquery 错误处理有关,您也可以在 google 上找到许多逻辑。

试试下面的代码:

// DOM Ready 
$('input#PHONE_FIELD_ID').on('change', function () {      
    handlePhoneValidation();
    return false;
});

 var clickAttr = $("#SAVE_BUTTON_ID").attr("onclick"); 
 $("#SAVE_BUTTON_ID").attr("onclick","return handlePhoneValidation(); "+clickAttr);


function handlePhoneValidation(){

    clear_all_errors();

    var node = $('input#PHONE_FIELD_ID');
        current_val = node.val();

   /*
    * Your validation will go here
    * if condition fail then return false otherwise true 
   */

    return false;
}

我用另一种方式解决了这个问题

./custom/modules/Module_name/metadata/editviewdefs.php

$viewdefs ['Accounts'] = [
    'EditView' => [
        'templateMeta' => [
            'form'                => [
                'includes'            => [
                 [
                     // include custom js file
                     'file' => 'modules/Module_name/file_name.js'
                 ],
                'buttons' => [
                    // Override save button and return after click custom function
                    0 => array (
                        'customCode' => '<input type="submit" name="save" id="save" onClick="this.form.return_action.value=\'DetailView\'; this.form.action.value=\'Save\'; return check_custom_data(\'EditView\'); " value="'.$GLOBALS['app_strings']['LBL_SAVE_BUTTON_LABEL'].'">',
                    ),
                    'CANCEL',

之后

modules/Module_name/file_name.js:

// Function check_custom_data() :

function check_custom_data(formname)
{
    if(formname === 'correct')
    {
        var _form = document.getElementById('EditView');
        _form.action.value='Save';
        SUGAR.ajaxUI.submitForm(_form);
        return check_form('EditView');
    }
    if(formname === 'EditView')
    {
        $.ajax({
            url : '/',
            method : 'POST',
            data : { }, // Some data
            success: function(data) {
                data = JSON.parse(data);
                if(!data.success)
                {
                    // Some code
                    return false;
                }
            }
            // If everything is ok
            check_custom_data('correct');
        }
    });
    return false;
}

这对我有用。