我正在处理一个显示3个元素的简单表单


起始条形码字段
结束条码字段
标签字段


用户在每个字段中输入2个条形码。将BarcodeEnd值的前2位与allBarcodePrefixes数据进行比较,以查看是否存在匹配项,如果不存在匹配项,则打印相应的代理名称或“未找到代理”。如果没有匹配项,则表单将在此处停止(用户必须修复条形码条目),但是如果找到匹配项,它将使用新生成的字段和v模型集显示新行

在我使v模型动态化之前,这一直很好,所以我可以独立地操作每个条目以进行验证和价值

问题
正在发生两件奇怪的事情,我需要伙计们的帮助。


当我模糊并进入下一个输入字段时,起始条形码字段将被清除。然后,当我在此处输入内容时,它又回来了!我也有一个清晰的控制台,所以我不知道发生了什么。
showAgencyName()方法应该获取v模型并将其与数据进行比较以获取代理商名称。但是我的v模型是动态的,使用字符串文字。我不确定如何获得这个价值


我在codepen中有代码供您查看并了解我的意思。我将onAddBarcodes函数放在失败的行中,以便您可以看到它正确验证(该部分有效)。最终,此行将被删除,因为仅在对代理进行验证之后才应对minLength和maxLength进行验证。

    <div id="q-app">
        <div class="q-pa-md">
          <div>
            <div v-for="(barcode, index) in barcodes" :key="index">
              <div class="full-width row no-wrap justify-start items-center q-pt-lg">
                <div class="col-3">
                  <label>Starting Roll #:</label>
                  <q-input outlined square dense v-model="$v[`barcodeStart${index}`].$model"></q-input>

                  <div class="error-msg">
                    <div v-if="!$v[`barcodeStart${index}`].maxLength || !$v[`barcodeStart${index}`].minLength">
                      <span> Must be exactly 9 characters. </span>
                    </div>
                  </div>
                </div>

                <div class="col-3">
                  <label>Ending Roll #:</label>
                  <q-input outlined square dense v-model="$v[`barcodeEnd${index}`].$model" @change="showAgencyName(barcode)"></q-input>
                  <div class="error-msg">
                    <div v-if="!$v[`barcodeEnd${index}`].maxLength || !$v[`barcodeEnd${index}`].minLength">
                      <span> Must be exactly 9 characters. </span>
                    </div>
                  </div>
                </div>

                <div class="col-3">
                  <label>Agency:</label>
                  <div v-if="barcode.agencyName">
                    {{ barcode.agencyName }}
                  </div>
                  <div v-else></div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>


      Vue.use(window.vuelidate.default)
      const { required, minLength, maxLength } = window.validators

      new Vue({
        el: '#q-app',
        data () {
          return {
            barcodes: [
              {
                barcodeStart: "",
                barcodeEnd: "",
                agencyName: ""
              }
            ],
            newPackage: "",
            reset: true,
            allBarcodePrefixes: {
              "10": "Boston",
              "11": "New York",
              "13": "Houston",
              "14": "Connecticut",
              "16": "SIA",
              "17": "Colorado",
              "18": "Chicago"
            }
          }
        },
        validations() {
          const rules = {};
          this.barcodes.forEach((barcode, index) => {
            rules[`barcodeStart${index}`] = {
                minLength: minLength(9),
                maxLength: maxLength(9)
            };
          });

          this.barcodes.forEach((barcode, index) => {
            rules[`barcodeEnd${index}`] = {
                minLength: minLength(9),
                maxLength: maxLength(9)
            };
          });
          return rules;
        },
        methods: {
          onAddBarcodes() {
            // creating a new line when requested on blur of barcodeEnd
            const newBarcode = {
              barcodeStart: "",
              barcodeEnd: "",
              agencyName: ""
            };
            this.barcodes.push(newBarcode);
          },

          showAgencyName(barcode) {
            var str = barcode.barcodeEnd; // I need to pull the v-model value
            var res = str.substring(0, 2); //get first 2 char of v-model
            if (this.allBarcodePrefixes[res] == undefined) {
              //compare it to data
              barcode.agencyName = "Agency not found"; //pass this msg if not matched
              this.onAddBarcodes(); //adding it to the fail just for testing
            } else {
              barcode.agencyName = this.allBarcodePrefixes[res]; //pass this if matched
              this.onAddBarcodes(); //bring up a new line
            }
          },
        }
      })


提前致谢!

最佳答案

您可以做的就是将v模型设置为v-for循环中的对象。这样它将看起来像这样。

<q-input outlined square dense v-model="barcode.barcodeStart"></q-input>




<q-input outlined square dense v-model="barcode.barcodeEnd"></q-input>


这样,他们将更新条形码对象,由于可以观察到,您的showAgencyName函数可以保持原样,并且其中的条形码对象也会被更新。

编辑

当您调用onchange事件时,您可以通过索引

@change="showAgencyName(barcode, index)"


然后在showAgencyName函数中,可以使用this.$v访问验证。

为确保规则已过期,您将需要更新$model。像这样

 this.$v[`barcodeStart${index}`].$model = barcode.barcodeStart
this.$v[`barcodeEnd${index}`].$model = barcode.barcodeEnd

// Check for errors
if (this.$v[`barcodeEnd${index}`].$error) {
   return
}

10-06 14:22