onload中call之前init
插件内调用云函数失败,提示没有init,请问插件内如何init?[图片]
2020-10-20长久使用建议使用云托管https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/container/introduction.html
云函数调用云函数超时怎么说?被调用的云函数(已设置独立运行超时60秒)多少超时?有没有官方说法?这个能放开别限制吗?按云函数自身设置超时为准。目前实测51秒会超时,10来秒正常。超时返回如下错误: {"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"errCode: -1 unknown error | errMsg: callFunction:fail Error: ESOCKETTIMEDOUT; at callFunction api; \nError: errCode: -1 unknown error | errMsg: callFunction:fail Error: ESOCKETTIMEDOUT; at callFunction api; \n at returnAsCloudSDKError (/var/user/node_modules/wx-server-sdk/index.js:7814:16)\n at Object.returnAsFinalCloudSDKError (/var/user/node_modules/wx-server-sdk/index.js:7828:15)\n at Promise (/var/user/node_modules/wx-server-sdk/index.js:1745:39)\n at \u003canonymous\u003e\n at process._tickCallback (internal/process/next_tick.js:188:7)"}
2020-10-20你的反馈我们已收到,我们会在后续的版本中考虑增加类似功能。
云开发存储的文件显示后续官方能否弄个自定义排序功能?提一个建议云开发的云存储里面文件显示默认是按照文件名来排序的,实际中查看文件不太方便,特别是文件名随机的时候新创建的文件有时候排末尾去了,几千个文件拉半天,后续建议官方弄一个自定义排序,比如可以自定义设置 按照文件名排序(默认) 按照更新时间排序 按照文件大小排序。。。
2020-10-20假如你的一个云函数使用256M内存,平均运行时长为500ms 那么每次调用需要消耗0.25G*0.5S=0.125GBS 4万GBS一共能支撑这个云函数运行32万次
云函数资源4万GBS是多少?可以举个例子量化说明一下是多少?谢谢。
2020-10-20这个属于正常业务实现,是可以的
云开发的环境共享里,能不能实现小程序和公众号的卡券打通?看了云开发中,公众号环境共享的云调用API,想知道下怎么实现与小程序的卡券打通。
2020-10-20typec?
云函数可以使用typec编写吗?云函数可以使用typec编写吗?
2020-10-20你的img代码如何?
image 的src 加载云端File ID,出现无法显示的原因。[图片] 原因:若存储里未有对应此地址的图片,加载此ID时,会加载失败,而image会自动将其拼接"/~/pages/cloud://~"路径,认为其是项目图片。 重点是,若此时云存储里已有对应地址图片,页面重新加载时,image依然是加载失败后拼接的"/~/pages/cloud://~"路径。只有关掉小程序,重新进入才能正常显示。 问题:http://路径失败后,image再次加载时依然是http开头, 为何cloud://路径加载失败,就会被拼接为项目路径,而不保持原有路径? 复现:方法1.删除一个云图片。方法2.先拼接ID路径,然后上传多张图片(默认只能一个一个上传),在其他图片未上传结束,就展示页面。
2020-10-19提交工单解决
已注销的小程序下面的云环境怎么删除?小程序注销了,但是创建的云环境在腾讯云的CloudBase云开发里面还能看到,找不到删除入口。
2020-10-19常见的 Uncaught (in promise) Error,自主解决一下
云函数发送HTTP请求失败https://cloud.tencent.com/edu/learning/course-1296-4324 我根据这个课程试验请求外部http WAService.js:1 Uncaught (in promise) Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID 158db8b8-1073-11eb-8057-525400c2bfee, cloud function service error code -504002, error message TypeError [ERR_INVALID_URL]: Invalid URL: httpbin.org/post at onParseError (:21211/appservice/internal/url.js:241) at new URL (:21211/appservice/internal/url.js:319) at Object.exports.default (:21211/var/user/node_modules/got/dist/source/core/utils/options-to-url.js:35) at normalizeArguments (:21211/var/user/node_modules/got/dist/source/core/index.js:480) at got (:21211/var/user/node_modules/got/dist/source/create.js:112) at Runtime.exports.main [as handler] (:21211/var/user/index.js:12) at Runtime.handleOnce (:21211/var/runtime/node10/Runtime.engine.js:214) at Timeout.setTimeout [as _onTimeout] (:21211/var/runtime/node10/Runtime.engine.js:54) at ontimeout (:21211/appservice/timers.js:436) at tryOnTimeout (:21211/appservice/timers.js:300); at cloud.callFunction api; at new u (WAService.js:1) at d (WAService.js:1) at f (WAService.js:1) at Function.success (WAService.js:1) at WAService.js:1 at C (WAService.js:1) at i. (WAService.js:1) at i.emit (WAService.js:1) at Rs (WAService.js:1) at WAService.js:1 一直反馈这个bug,我代码和步骤是跟着做的。 我在app.js里面定义了 wx.cloud.init({ // env 参数说明: // env 参数决定接下来小程序发起的云开发调用(wx.cloud.xxx)会默认请求到哪个云环境的资源 // 此处请填入环境 ID, 环境 ID 可打开云控制台查看 // 如不填则使用默认环境(第一个创建的环境) env: "",//这里已经填了我的env traceUser: true }) 云函数端httptest/index.js里面 // 云函数入口文件 const cloud = require('wx-server-sdk') const got = require('got'); //引用 got cloud.init() // 云函数入口函数 exports.main = async(event, context) => { //let getResponse = await got('httpbin.org/get') //get请求 用httpbin.org这个网址做测试 //return getResponse.body let postResponse = await got('httpbin.org/post', { method: 'POST', //post请求 headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ //把json数据(对象)解析成字符串 title: "网址", value: 'anipc.com' }) }) return postResponse.body //返回数据 } 并且不管是云端安装依赖还是不安装依赖两种方式都试过了,并且在终端安装了got https://my.oschina.net/u/4261674/blog/3708848 按照这个网址上写的一步步做了。但是还是一直报错,就是最上面的那个错误。求大神解答一下是什么问题? 云函数httptest文件夹里面的index.js Page({ http:function(e){ wx.cloud.callFunction({ //调用云函数 name:'httptest' //云函数名为http }).then(res=>{ //Promise console.log(JSON.parse(res.result)) }) }, }) 云函数httptest的package.json { "name": "httptest", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "got": "^11.7.0", "wx-server-sdk": "~2.3.2" } }
2020-10-19你的反馈我们已收到,我们会在后续的版本中考虑增加。
小程序云开发 何时提供分账功能的api啊?小程序云开发 何时提供分账功能的api啊?
2020-10-19