- 当前 Bug 的表现(可附上截图)
云函数上传文件没有效果
- 预期表现
生成二维码文件上传到云存储
- 复现路径
- 提供一个最简复现 Demo
const qr = require('qr-image')
const cloud = require('wx-server-sdk')
// 初始化 cloud
cloud.init()
exports.main = (event, context) => {
exports.main = async (event, context) => {
var png = qr.image('I love QR!', { type: 'png' });
return await cloud.uploadFile({
cloudPath: 'qr.png',
fileContent: png
})
}
}
微信小程序开发问题解答
微信小程序开发者回答:
https://developers.weixin.qq.com/community/develop/doc/000aac5b128bc8bd8ab7b679956804
本文网址:http://www.91bianli.com/weixinxiaochengxu/42933.html