最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin1浏览0评论

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))


      })
  }
发布评论

评论列表(0)

  1. 暂无评论