맞춤 양식 확인-Magento


18

jQuery를 사용하여 Magento에서 일부 사용자 정의 양식 유효성 검사를 구현하려고하지만 올바른 방법이 있는지 확실하지 않습니다.

기본적으로 다음을 확인해야합니다.

  1. 1에서 1.00까지는 숫자 필드 만 .00이면됩니다

  2. 문자는 대문자 여야합니다

  3. 9.99보다 큰 숫자를 가질 수 없습니다

  4. 기분에 공백이 없습니다

jQuery를 사용하려고하고 양식의 유효성을 검사하기 위해 무언가를 작성하는 것에 대해 설정했습니다.

<script>
    jQuery(document).ready(function() {
        jQuery.validator.addMethod("integer", function(value, element) {
            return this.optional(element) || /^-?\d+$/.test(value);
        }, "A positive or negative non-decimal number please");

        function(field, length) {
            if (!numericRegex.test(length)) {
                return false;
            }
            return (field.value.length <= parseInt(length, 4));
        },
    }
</script>

문제는 다른 유효성 검사 필드의 기능을 찾을 수 없으며 도움을 줄 수 있습니까 ???

답변:


25

훌륭한 질문입니다!

이를 위해 jQuery가 필요하지 않습니다 . 내장 Magento 양식 유효성 검사기를 사용하여이 작업을 수행 할 수 있습니다. 먼저 유효성 검사를 위해 양식을 설정하는 Javascript가 양식 템플리트에 배치되어야합니다.

<script type="text/javascript">
  var myForm= new VarienForm('[your form id]', true);
</script>

이제 적절한 CSS 클래스를 추가 하여 양식 필드 를 준비하십시오 .

9.99보다 큰 숫자를 가질 수 없습니다

<input type="text" class="required-entry validate-digits-range digits-range-0-9.99"/>

필드에 공백이 없습니다

<input type="text" class="required-entry validate-alphanum"/>

그게 다야! 보다 구체적인 사용 사례의 경우 사용자 지정 유효성 검사 규칙을 추가해야합니다.

1에서 1.00까지는 숫자 필드 만 .00이면됩니다

Validation.add('validate-float','Input must be in the form of 0.00',function(v){
    return Validation.get('IsEmpty').test(v) || (!/\./.test(v));
});

그런 다음 다음을 통해 유효성이 검사됩니다.

<input type="text" class="required-entry validate-float"/>

문자는 대문자 여야합니다

이것은 비슷합니다. 정규 표현식은 대문자 범위를 테스트해야합니다.

Validation.add('validate-uppercase','Input must be in uppercase',function(v){
    return Validation.get('IsEmpty').test(v) || (!/^[A-Z]+$/.test(v));
});

그리고 다음과 같이 사용됩니다 :

<input type="text" class="required-entry validate-uppercase"/>

@ 감사합니다 형제, 당신은 최근에 나를 도와 왔습니다!
user1704524

@philwinkle 0에 대한 유효성 검사와 함께 float / decimal 값을 제한하는 방법은 무엇입니까?
Slimshadddyyy

@Vikram 당신은 새로운 질문을 열고 유스 케이스를 줄 수 있습니까?
philwinkle

VarienForm 은 단일 파일에서 두 가지 형식으로 사용할 수 있습니다
ND17

3

데이터 유효성 검사를위한 많은 클래스가 있습니다.

'validate-no-html-tags'         => 'HTML tags are not allowed'
'validate-select'               => 'Please select an option.'
'required-entry'                => 'This is a required field.'
'validate-number'               => 'Please enter a valid number in this field.'
'validate-number-range'         => 'The value is not within the specified range.'
'validate-digits'               => 'Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas.'
'validate-digits-range'         => 'The value is not within the specified range.'
'validate-alpha'                => 'Please use letters only (a-z or A-Z) in this field.'
'validate-code'                 => 'Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.'
'validate-alphanum'             => 'Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed.'
'validate-alphanum-with-spaces' => 'Please use only letters (a-z or A-Z), numbers (0-9) or spaces only in this field.'
'validate-street'               => 'Please use only letters (a-z or A-Z) or numbers (0-9) or spaces and # only in this field.'
'validate-phoneStrict'          => 'Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.'
'validate-phoneLax'             => 'Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.'
'validate-fax'                  => 'Please enter a valid fax number. For example (123) 456-7890 or 123-456-7890.'
'validate-date'                 => 'Please enter a valid date.'
'validate-date-range'           => 'The From Date value should be less than or equal to the To Date value.'
'validate-email'                => 'Please enter a valid email address. For example johndoe@domain.com.'
'validate-emailSender'          => 'Please use only visible characters and spaces.'
'validate-password'             => 'Please enter 6 or more characters. Leading or trailing spaces will be ignored.'
'validate-admin-password'       => 'Please enter 7 or more characters. Password should contain both numeric and alphabetic characters.'
'validate-both-passwords'       => 'Please make sure your passwords match.'
'validate-url'                  => 'Please enter a valid URL. Protocol is required (http://, https:// or ftp://)'
'validate-clean-url'            => 'Please enter a valid URL. For example http://www.example.com or www.example.com'
'validate-identifier'           => 'Please enter a valid URL Key. For example &quot;example-page&quot;, &quot;example-page.html&quot; or &quot;anotherlevel/example-page&quot;.'
'validate-xml-identifier'       => 'Please enter a valid XML-identifier. For example something_1, block5, id-4.'
'validate-ssn'                  => 'Please enter a valid social security number. For example 123-45-6789.'
'validate-zip'                  => 'Please enter a valid zip code. For example 90602 or 90602-1234.'
'validate-zip-international'    => 'Please enter a valid zip code.'
'validate-date-au'              => 'Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.'
'validate-currency-dollar'      => 'Please enter a valid $ amount. For example $100.00.'
'validate-one-required'         => 'Please select one of the above options.'
'validate-one-required-by-name' => 'Please select one of the options.'
'validate-not-negative-number'  => 'Please enter a number 0 or greater in this field.'
'validate-zero-or-greater'      => 'Please enter a number 0 or greater in this field.'
'validate-greater-than-zero'    => 'Please enter a number greater than 0 in this field.'
'validate-state'                => 'Please select State/Province.'
'validate-new-password'         => 'Please enter 6 or more characters. Leading or trailing spaces will be ignored.'
'validate-cc-number'            => 'Please enter a valid credit card number.'
'validate-cc-type'              => 'Credit card number does not match credit card type.'
'validate-cc-type-select'       => 'Card type does not match credit card number.'
'validate-cc-exp'               => 'Incorrect credit card expiration date.'
'validate-cc-cvn'               => 'Please enter a valid credit card verification number.'
'validate-ajax'                 => ''
'validate-data'                 => 'Please use only letters (a-z or A-Z), numbers (0-9) or underscore(_) in this field, first character should be a letter.'
'validate-css-length'           => 'Please input a valid CSS-length. For example 100px or 77pt or 20em or .5ex or 50%.'
'validate-length'               => 'Text length does not satisfy specified text range.'
'validate-percents'             => 'Please enter a number lower than 100.'
'validate-cc-ukss'              => 'Please enter issue number or start date for switch/solo card type.'
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.