我是靠谱客的博主 生动萝莉,最近开发中收集的这篇文章主要介绍【微信小程序】报错TypeError: this.setData is not a function,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2020年2月13日 0次阅读 共913个字 0条评论 0人点赞 QueenDekimZ

WX Developer Kits Debug
	open() {
	this.setData({
	camera: true,
	login_res: "登录中..."
	})
	type = "takePhoto";
	let ctx = wx.createCameraContext(this)
	let that = this
	time = setInterval(function () {
	if (type == "takePhoto") {
	console.log("begin takephoto")
	ctx.takePhoto({
	quality: "normal",
	success: (res) => {
	console.log(res.tempImagePath)
	var tempImagePath = res.tempImagePath
	wx.uploadFile({
	url: 'http://192.168.43.236:90/face_login',
	filePath: tempImagePath,
	name: 'file',
	header: { "Content-type": "multipart/form-data" },
	success: function (res) {
	if (res.data == "success") {
	type = "endPhoto";
	that.setData({
	login_res: "登录成功"
	})}
	},
	})
	}
	})
	}
	}, 200)
	setTimeout(function () {
	clearInterval(time);
	type = "endPhoto";
	this.setData({
	login_res: "登陆超时"
	})
	}, 5000)
	},

this.setData只能用于函数里面的第一层,如果用于函数里面的其他方法内,比如此处的setInterval里面,就必须要在函数内第一层申明this,
比如that=this

setTimeout()函数改为

setTimeout(function () {
	clearInterval(time);
	type = "endPhoto";
	that.setData({
	login_res: "登陆超时"
	})
	}, 5000)

后,成功编译。

最后

以上就是生动萝莉为你收集整理的【微信小程序】报错TypeError: this.setData is not a function的全部内容,希望文章能够帮你解决【微信小程序】报错TypeError: this.setData is not a function所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部