JQuery form doğrulama uzaktan yöntemi ile yüklenen dosya boyutunu doğrulamak

0 Cevap php

Ben aşağıdaki gibi bir dosya boyutu doğrulama yapmak istiyorum. Bu öneri yöntem mantıklı olup olmadığını bakın. Tek başına bu bölümü çalışması gerekir.

1> After the user selects a file, I check whether the file has suffix as png, gif etc.
$("#myform").validate({
 rules: {
   fieldForUpload: {
     required: true,
     accept: "png|gif"
   }
 }
});

2> Then I would like to use aJax method to upload the file to server for validation even before the user clicks the submit button. http://docs.jquery.com/Plugins/Validation/Methods/remote#url

$("#myform").validate({
  rules: {
    fieldForUpload: {
      required: true,
      accept: "png|gif"
      remote: "check-filesize.php"
    }
  }
});

İşte benim sorular:

1> Is this method valid? In other words, can I validate the fieldUpload with "accept" + "remote" together?

2> Ben doğrulamak için zorunlu Can birinci, daha sonra "uzak" doğrulamak "kabul"?

3> How to implement this "remote" method? FYI: I knew how to validate whether an email exists on the DB by using remote. Do I have to gain some different knowledge in order to achieve this?

Çok teşekkürler

0 Cevap