参考官方文档:点击跳转
具体实现:
wxml:
js:
const defaultAvatarUrl =
'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
const avatarUrl = ref(defaultAvatarUrl)
//图片路径容器
const imgInfo = reactive({
imgs: ''
})
// 头像上传事件
const onChooseAvatar = (e) => {
console.log(e);
avatarUrl.value = e.detail.avatarUrl;
console.log(e.detail.avatarUrl);
uni服务器托管网.uploadFile({
url: 'https://xxxx', //仅为示例,非真实的接口地址
filePath: e.detail.avatarUrl,
name: 'file',
formData: {
'user': 'test'
},
success: function(res) {
//剥离接口返回路径
imgInfo.imgs = JSON.parse(res.data)
console.log(imgInfo.imgs.data.url);
}
});
}
之后根据注册需求适当调整即可 (〃 ̄︶ ̄)人( ̄︶ ̄〃)
服务器托管,北京服务器托管,服务器租用 服务器托管网http://www.fwqtg.net
在 Spring 中,对于 Body 的处理很多是借助第三方编解码器来完成的。例如常见的 JSON 解析,Spring 都是借助于 Jackson、Gson 等常见工具来完成。所以在 Body 处理中,我们遇到的很多错误都是第三方工具使用中的一些问题。 真正对…