当我用 vuejs 输入时隐藏的错误

Posted

技术标签:

【中文标题】当我用 vuejs 输入时隐藏的错误【英文标题】:Hidden errors when i type back with vuejs 【发布时间】:2022-01-24 01:40:22 【问题描述】:

当我更改页面时,表单的错误仍然存​​在,我希望它们在我更改页面后消失,而不是当我返回页面时,我总是查看它们。我该怎么办?

这是我的错误

<template>
  <b-form @submit="onSubmit">
    <div v-if="getError">
  <div v-for="(_errors, key) in getError">
   <b-alert
      v-for="error in _errors"
      show
      variant="danger"> 
   
      <h2> formatKey(key)  :</h2>
      <li> error </li>
    </b-alert>
  </div>
</div>

这是我的 js

    
  computed: 
    ...mapGetters([
      'getError'
    ]),

  methods : 
    starDate() 
      return Date.now()
    ,
    highlightFrom (elem) 
      this.validate_start = true
      this.disabledDates.to = elem
    ,
    validate (elem)
      return elem !== null && elem !== ''
    ,
    setSelected(value) 
     this.hiring_contract_category = value;
     this.contract = value === 'contract';
    ,
    async onSubmit(event) 
      this.errors = false;
      this.$store.commit('commit_contractable_id', this.id)
      await this.$store.dispatch('create_contract', this.form)
    ,


     formatKey (key) 
      return this.$t('vue.' + key.replace('contract_data.', ''))
    

【问题讨论】:

【参考方案1】:

当你的组件被挂载时尝试清除。

mounted() 
  // commit to store using mutation (you will need to update your store with method...
  this.$store.commit('clear_errors')

【讨论】:

以上是关于当我用 vuejs 输入时隐藏的错误的主要内容,如果未能解决你的问题,请参考以下文章

当我在 iOS 上的网站上输入密码时,如何隐藏最后一位数字

Vuejs 根据从下拉列表中选择的值显示其他输入字段

VueJS 计算属性未在 DOM 上更新

vuejs输入witdh掩码新钱

vuejs如何更改组件的输入值

当我尝试在 reactive() 函数中更改值的类型时发生了一些错误