uniapp uni.getUserProfile 、返回省市中文

uniapp uni.getUserProfile 、返回省市中文_第1张图片

这里要写desc:要不然回报错误:getUserProfile:fail parameter error: parameter.desc should be String instead of Undefined;

uniapp uni.getUserProfile 、返回省市中文_第2张图片

login要去掉:要不然会报:getUserProfile:fail can only be invoked by user TAP gesture.

loginTest() {	// 获取用户信息
			uni.getUserProfile({
                lang:'zh_CN',
				desc:'登录',
				success:(res)=>{
					debugger
					console.log(res);
				},
				fail:(res)=>{
					debugger
					console.log(res)
				}
			});
		},

 uniapp uni.getUserProfile 、返回省市中文_第3张图片

ps:如果添加参数:lang:'zh_CN',返回结果如下

uniapp uni.getUserProfile 、返回省市中文_第4张图片

 

你可能感兴趣的:(小程序,uni-app)