首页 > 其他分享 >Cannot read properties of undefined (reading 'indexOf') at VueComponent.resetField (index.

Cannot read properties of undefined (reading 'indexOf') at VueComponent.resetField (index.

时间:2023-11-16 17:56:50浏览次数:30  
标签:index undefined indexOf prop resetField Cannot reading

Cannot read properties of undefined (reading 'indexOf')
at VueComponent.resetField (index.js:1:370572)

 

elementUI源码报错,原因竟然是form-item没加prop,折腾了一两个小时,真是服了。

rules按照表单的prop来的 用了那个resetfieds必须每个<el-form-item>都加prop!!

 

因为最后这个表单是个纯展示的所以没有写prop,结果就在关闭弹窗的方法里调用了this.$refs["addForm"].resetFields();一直报错!!!!真坑!!

表单重置 this.$refs.form.resetFields() 也需要 el-form-item 绑定 prop, 否则无效




 




标签:index,undefined,indexOf,prop,resetField,Cannot,reading
From: https://www.cnblogs.com/mmzuo-798/p/17836890.html

相关文章

  • Index was outside the bounds of the array ,LocalReport.Render
     Finallyicanexporttoexcel,..ifoundthatreportingserviceshasalimitation..youcan´tinsertatableinanothertableormatrix..onlyListcanbenested..itrytosay..ifyouneedtoshowdatanestedlikemasterdetail,youmustuseonlylist......
  • 无涯教程-Dart - Updating The Index函数
    Dart允许修改列表中元素的值,换句话说,可以重写列表项的值,以下示例说明了相同的内容-voidmain(){Listl=[1,2,3];l[0]=123;print(l);}上面的示例使用索引0更新List项的值。代码的输出将为-[123,2,3]参考链接https://www.learnfk.com/dart-programming/......
  • chrome浏览器报Cannot read properties of undefined (reading 'getUserMedia')
    chrome访问摄像头的时候可能报这个错误。使用https协议可以解决这个问题,如果不能使用https可以通过修改chrome配制解决。在chrome地址栏输入chrome://flags/#unsafely-treat-insecure-origin-as-secure在Insecureoriginstreatedassecure的输入框输入要打开网页的地址如http......
  • ASP.net MVC3 报错"未找到视图“Index”或其母版视图,或没有视图引擎支持搜索的位置 "
    https://www.cnblogs.com/allenhua/p/3746578.html注意添加MVC3视图不能直接在View文件下新建视图,而是在控制器的Index右击添加视图,就会在View下面产生一个Product文件夹(包含Index.cshtml)就可以解决这个问题。具体如图:  ......
  • 若依分离版打包部署后找不到模块(Error: Cannot find module ‘@/views/index‘)
    将store/moudules/permission.js这一块改成下面这样,注释的可以删exportconstloadView=(view)=>{return(resolve)=>require([`@/views/${view}`],resolve)//if(process.env.NODE_ENV==='development'){////}else{////使用import实现生产环境的......
  • Index - 此处的诗
    虚构往事正篇  嗯……本来发过两篇,但深愧于仓促的处理和并未完善的细节设定,隐藏了。  大概会是一个中篇的科幻故事,世界设定已经完善了(Shaya可以作证!),但近期可能没有精力动笔。番外  大概只是借用了设定而已,和正篇情节没有任何关系。「虚构往事」入梦「虚构往事......
  • train_logReg_param.o:train_logReg_param.cc:(.text+0x3407): more undefined refere
     001、make编译报错:train_logReg_param.o:train_logReg_param.cc:(.text+0x3407):moreundefinedreferencesto`std::__throw_out_of_range_fmt(charconst*,...)'follow 002、解决方法(可能是gcc版本的问题)a、gcc当前版本:(py38)[[email protected]]#gcc......
  • 全局window对象调用,但是window并没有这个属性则会 undefined
    下面这段JS程序的执行结果是:varuser={count:1,getCount:function(){returnthis.count;}}varfunc=user.getCountconsole.log(func())Athis.countB1C报错Dundefined正确答案:D//1.调用对象未声明的属性会undifnedvaruser={};console.log(us......
  • 执行以下代码,输出的a值为 undefined
    if(!"a"inwindow){vara=1;}alert(a);官方解析:由于存在变量提升,在if语句执行之前会先使用var声明变量a,并且声明时是在全局作用域下,因此变量a自动成为window对象的属性,故ainwindow的返回结果为true,“!”将条件取反后返回结果为false,所以不会执行if中的赋值语句,a......
  • null和undefined互相相等,且与自身相等;除此之外其他类型值都不存在这种情况
    null与undefined在与其他数相等运算时不进行类型转换,也就是null和undefined单独和别的比较都为false,但是null和undefined比较就为true,因为undefined就是null衍生出来的一个对象关于==的比较规则大体有一下几点:1、操作数为数字与字符串时,将字符串转换为数字,再比较值2、操作......