关于uniapp的一些坑

在main.js中修改了数组的原型链如下

Array.prototype.Notempty_fob =  function(items) {
	var arr = []
	this.map(function(curr,index){
		if(items.includes(index)){
			
		}else{
			arr.push(curr)
		}
	})
    return arr;
}

这个函数的大致意思是根据传进函数的数组去除掉索引值为items中的数组元素并将得到的数组返回

vue界面的调用

del(){
    for(let v of this.DelItems){
        this.formlist.splice(v,1,null)
    }
    Array.from(this.DelItems)
    let arr =[2]
    this.formlist = this.formlist.Notempty_fob(arr)
    //this.formlist为视图提供数据的属性
}

当调用del函数时 控制台就会报错 Notempty_fob() 未定义

程序调试和h5端运行都能正常运行,放到手机上运行时就会报Notempty_fob() 未定义

最后将main.js中的函数修改为Vue.prototype.Notempty_fob()

Vue.prototype.Notempty_fob =  function(Arr,items) {
	var arr = []
	Arr.map(function(curr,index){
		if(items.includes(index)){
			
		}else{
			arr.push(curr)
		}
	})
    return arr;
}

手机端也正常显示。

**记录下错误

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值