我也是,电脑重启下就好了
小程序开发者工具云开发进不去 一直卡在初始化界面[图片]
2020-10-09是不是刚申请的?
微信开放平台无法关联小程序?微信开放平台无法关联小程序,两个主题信息一致,小程序中有设有管理员,管理员信息与开放平台人员信息一致,但是关联的时候会提示: 你的小程序还未设置管理员信息,无法被绑定你可先访问mp.weixin.qq.com,在 “用户身份” 页面设置管理员信息后即可进行绑定
2020-07-20不会啊,我的开发者工具扫一次码都用半个多月,然后在去扫描
微信开发者工具登录能拉起电脑微信么?每次得多扫一次?每天打开电脑后都会登录微信,要求扫码 然后再打开微信开发者工具,又得扫码, 很无语,微信客户端就不能拉起么? 想让微信开发者工具自动检测到微信已登录的电脑微信,不是很省时间么?
2020-07-20云函数端属于nodejs后端,要在后端上传文件起码要有个文件夹来存放图片,起码要用fs模块读取出来
在云函数中上传文件到云存储遇到的问题?在云函数里可以使用在小程序端wx.chooseMessageFile获取的临时文件上传至云存储吗?求大佬指点, 还有就是临时文件是本地文件吗? 求指点,谢谢~
2020-07-19删除的文章主页有,历史记录里没有的
公众号怎样一天可以发多次?1、推文发出去后,删掉的文章,主页怎么还有? 2、公众号标题错了为什么改不了? 3、怎样可以让公众号的推文一天发多次?
2020-07-19收集用户信息,应该不可以
从今天起开始着手做问卷小程序,请问对个人而言,问卷小程序是被允许的吗?从今天起开始着手做问卷小程序,请问对个人而言,问卷小程序是被允许的吗? 问卷小程序在对个人的开放类目里面?
2020-07-19你写的路径不对
tabbar中的iconPath图片加载不成功,请问大神们这问题出在哪里呀?list: [{ "text": "登陆", "iconPath": "/miniprogram/images/login-rounded-right2.png", "selectedIconPath": "/miniprogram/images/login-rounded-right2.png" }, { "text": "注册", "iconPath": "/miniprogram/images/login-rounded-right1.png", "selectedIconPath": "/miniprogram/images/login-rounded-right1.png" }] 图片途径是对的,写过相对路径也写了绝对路径,都不行,图片大小是都不超过4KB。 [图片] 以下是运行效果,图片就是不能加载出来。 [图片]
2020-07-19使用await 不是要在async是嘛
使用awai的时候,为啥总是报错: Unexpected token, expected ";" ?我封装了一个批量上传云存储的函数,为什么这里我一用await,就报错:语法错误: Unexpected token, expected ";" (33:22),是怎么回事呢? [图片] 代码如下: <template> <view><button type="default" @click="myImage">上传</button></view> </template> <script> export default { data() { return {}; }, methods: { async myImage() { var result = await this.myChooseImage(); var tempFilePaths = result.tempFilePaths; var result1=this.myUploadFile(tempFilePaths) console.log(result1) }, //封装 上传文件 myUploadFile(arr) { var uploadAll = arr.map(item => { var extend = /\.\w+$/.exec(item)[0]; var cloudPath = new Date().getTime() + extend; return uniCloud.uploadFile({ filePath: item, cloudPath: cloudPath }); }); var result =await Promise.all(uploadAll); }, //封装选择函数 myChooseImage() { return new Promise((resolve, reject) => { var result = uni.chooseImage({ success(res) { resolve(res); }, fail(err) { reject(err); } }); }); } } }; </script> <style></style>
2020-07-19我也遇到这个问题了,题主解决了吗?
云函数上传图片问题,云函数,一直测试不成功?帮忙看看什么情况?// 云函数入口文件 const cloud = require('wx-server-sdk') const fs = require('fs') const path =require('path') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) // 云函数入口函数 exports.main = async (event, context) => { const tupian = event.tu //传进来的是一个图片的临时路径! console.log("tupian") console.log(tupian) const fileStream = fs.createReadStream(path.join(__dirname,tupian)) console.log("fileStream") console.log(fileStream) const wxwx = await cloud.uploadFile({ cloudPath:"test.jpg", fileContent:fileStream }) return wxwx } 调试错误信息:VM2540:1 Uncaught (in promise) thirdScriptError errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID 479173ba-4fdd-11ea-8026-52540029942f, cloud function service error code -504002, error message errCode: -503001 storage request fail | errMsg: uploadFile:fail The body of your POST request is not well-formed multipart/form-data.; at uploadFile api; Error: errCode: -503001 storage request fail | errMsg: uploadFile:fail The body of your POST request is not well-formed multipart/form-data.; at uploadFile api;
2020-07-19是公众号吗?是的话后台有关闭水印的按钮。
怎样把推文里面的图片上自动生成的水印去掉呢?怎样把推文里面的图片上自动生成的水印去掉呢?
2020-07-19