只要在后面加上.catch((e) => {}),就不会报错了,

const queGetdata = (params, context) => {
	
	return new Promise((resolve, reject) => {
		appVue.$http.post(appVue.$apis.getdata,
			{
			  gcode: 'QUERY_CUSTBILL'
			}, {
				isAutoLoading: false, //是否展示loading
			}).then(resp => {
				console.log("触发进来了222222")
			let data = resp.responseBody.paramdata; 
			console.log("触发进来了"+JSON.stringify(data[0]))
			
			// commit必须放在后面,不然会报错“Uncaught (in promise) TypeError: Cannot read properties of undefined (readin”
			context.commit("setCustbill", JSON.parse(JSON.stringify(data[0])))
			console.log("触发data[0]"+JSON.stringify(data[0]))
			resolve(data[0])
			
		}).catch(error => {
			reject(error)  // 这里报error写进去就不会报错,注意注意 Uncaught (in promise)
		});
	})
}

 

 这个问题的解决要想resolve(),在commit()不然就会报错,注意:先后的顺序

const queGetdata = (params, context) => {
	
	return new Promise((resolve, reject) => {
		appVue.$http.post(appVue.$apis.getdata,
			{
			  gcode: 'QUERY_CUSTBILL'
			}, {
				isAutoLoading: false, //是否展示loading
			}).then(resp => {
				console.log("触发进来了222222")
			let data = resp.responseBody.paramdata; 
			console.log("触发进来了"+JSON.stringify(data[0]))
			resolve(data[0])
			// commit必须放在后面,不然会报错“Uncaught (in promise) TypeError: Cannot read properties of undefined (readin”
			context.commit("setCustbill", JSON.parse(JSON.stringify(data[0])))
			console.log("触发data[0]"+JSON.stringify(data[0]))
			
			
		}).catch(error => {
			reject(error)
		});
	})
}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐