javascript - yup.validate only returns single field in errors array - Stack Overflow

I am trying to add yup in an angular7 project. I have added it successfully to my ponent.readonly optio

I am trying to add yup in an angular7 project. I have added it successfully to my ponent.

  readonly optionalRequiredSchema = yup.object().shape({
    ['@name']: yup.string().required(),
    description: yup.string().required(),
    ['rule-type']: yup.string().required(),
    from: yup.object().required(),
    source: yup.object().required(),
    to: yup.object().required(),
    destination: yup.object().required(),
    service: yup.object().required(),
    application: yup.object().required(),
    action: yup.string().required()
  });

I am validating like this

  validateData() {
    this.optionalRequiredSchema.validate(this.allData)
      .then(
        (data) => console.log(data)
      ).catch(err => {
        console.log(err);
        this.showToast('top-right', 'danger', JSON.stringify(err.errors))


      })
  }

If i pass all empty object to validate it only give 1 field in errors array. when i correc that than it shows next 1 field. how can i get list of all invalid fields.

Thanks

I am trying to add yup in an angular7 project. I have added it successfully to my ponent.

  readonly optionalRequiredSchema = yup.object().shape({
    ['@name']: yup.string().required(),
    description: yup.string().required(),
    ['rule-type']: yup.string().required(),
    from: yup.object().required(),
    source: yup.object().required(),
    to: yup.object().required(),
    destination: yup.object().required(),
    service: yup.object().required(),
    application: yup.object().required(),
    action: yup.string().required()
  });

I am validating like this

  validateData() {
    this.optionalRequiredSchema.validate(this.allData)
      .then(
        (data) => console.log(data)
      ).catch(err => {
        console.log(err);
        this.showToast('top-right', 'danger', JSON.stringify(err.errors))


      })
  }

If i pass all empty object to validate it only give 1 field in errors array. when i correc that than it shows next 1 field. how can i get list of all invalid fields.

Thanks

Share Improve this question asked May 27, 2020 at 10:28 rajuraju 6,95427 gold badges89 silver badges183 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Yup validate function accept second argument options. Pass {abortEarly: false} will fix your issue

  validateData() {
    this.optionalRequiredSchema.validate(this.allData, {abortEarly: false})
      .then(
        (data) => console.log(data)
      ).catch(err => {
        console.log(err);
        this.showToast('top-right', 'danger', JSON.stringify(err.errors))


      })
  }

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743645111a4483622.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信