Như @Wojtek Naruniec viết, bạn phải tạo phương thức xác thực tùy chỉnh của riêng bạn trong tệp javascript và sử dụng nó trong trường cấu hình mô-đun của bạn trong tệp system.xml .
Giả sử lĩnh vực của bạn là:
<field id="color" translate="label comment" type="text" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Color</label>
<comment>Exadecimal value, without #: ex. FFFFFF</comment>
</field>
và bạn muốn kiểm tra độ dài trường (chính xác là 6 ký tự).
Tạo tệp javascript của bạn,
ellerName / moduleName / view / adminhtml / web / js / verify.js
ví dụ:
require([
'jquery',
'mage/translate',
'jquery/validate'],
function($){
$.validator.addMethod(
'validate-exadecimal-color-length', function (v) {
return (v.length == 6);
}, $.mage.__('Field must have length of 6'));
}
);
sau đó tải tệp javascript trong trang cấu hình quản trị viên để bạn phải tạo tệp
VendName / moduleName / view / adminhtml / layout / adminhtml_system_config_edit.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<link src="vendorName_moduleName::js/validation.js"/>
</head>
</page>
Bây giờ bạn có thể sử dụng <validate>
thẻ thêm trình xác thực của mình vào <field>
thẻ của tệp system.xml của bạn :
<field id="color" translate="label comment" type="text" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Color</label>
<validate>validate-exadecimal-color-length</validate>
<comment>Exadecimal value, without #: ex. FFFFFF</comment>
</field>