当前位置:网站首页>上传图片-微信小程序(那些年的坑记录2022.4)
上传图片-微信小程序(那些年的坑记录2022.4)
2022-07-31 15:58:00 【cc.ChenLy】
今天被问到一个问题,怎么上传图片,问这个之前呢,我是在说vue项目的,elementui不是封装好了一堆插件吗,直接用就好了0_0
我只用过微信小程序自带的API,原理应该差不多
比如说一个发布上线的小程序,上传图片该怎么上传
逻辑:
A先生要发布租房信息,需要上传一张图片,首先要选择图片,选择图片之后,保存图片信息
选择上传图片后,把图片上传到云存储中,会返回云存储的图片使用链接
再把链接地址,通过数据接口存放在数据库,那样数据存储成功
B先生查询房屋信息,遍历数据接口数据,渲染出房屋信息,就可以看到A先生发布的租房图片
实现:
1、选择图片的API,拿到图片
wx.chooseImage(Object object)
或者
wx.chooseMedia(Object object)
2、发布信息前,上传图片,拿到链接地址

3、拿到链接地址就好办了,直接存起来就好了
这里遇到一个坑,就是上传到云存储是异步操作,如果和上传数据库放在一起,好像就是先执行数据库后在执行云存储,这样的话就存空图片数据了,所以建议分开写,先把图片上传后,再触发上传数据库
边栏推荐
- 6-22 Vulnerability exploit - postgresql database password cracking
- arm按键控制led灯闪烁(嵌入式按键实验报告)
- mysql黑窗口~建库建表
- 小程序:matlab解微分方程「建议收藏」
- Applicable Scenarios of Multi-Master Replication (1) - Multi-IDC
- Stuck in sill idealTree buildDeps during npm installation, npm installation is slow, npm installation is stuck in one place
- ansible study notes 02
- org.apache.jasperException(could not initialize class org)
- 多主复制的适用场景(2)-需离线操作的客户端和协作编辑
- tensorflow2.0 cnn(layerwise)
猜你喜欢
随机推荐
Implement anti-shake and throttling functions
BGP综合实验(建立对等体、路由反射器、联邦、路由宣告及聚合)
C language "the third is" upgrade (mode selection + AI chess)
Handling write conflicts under multi-master replication (4) - multi-master replication topology
Unity 之 图集属性详解和代码示例 -- 拓展一键自动打包图集工具
外媒所言非虚,苹果降价或许是真的在清库存
Vb how to connect mysql_vb how to connect to the database collection "advice"
利用PHP开发具有注册、登陆、文件上传、发布动态功能的网站
Linux check redis version (check mongodb version)
Why is the field of hacking almost filled with boys?
MySQL数据库操作
字符指针赋值[通俗易懂]
使用 Postman 工具高效管理和测试 SAP ABAP OData 服务的试读版
gerrit中如何切换远程服务器
11 pinia使用
更新数据表update
国内市场上的BI软件,到底有啥区别
字符串反转的实现方法总结「建议收藏」
Codeforces Round #796 (Div. 2) (A-D)
Summary of the implementation method of string inversion "recommended collection"


![[TypeScript] In-depth study of TypeScript type operations](/img/d9/ee240ccba72e8d3114ee5c52ed0c8f.png)






