- 云托管中对象存储加载太慢如何解决?
云托管中的对象储存加载太慢了,和COS对比老是COS的加载好了云托管的没加载出来或者需要等上几秒至十几秒才能加载出来, 加载方式是直接在上传时获取文件File ID,然后再通过File ID获取图片链接,然后将链接保存在后端。 后面直接加载的话就直接访问图片链接的方式,下面是上传图片的接口和拿到该图片链接的接口,请问下是什么问题 task = wx.cloud.uploadFile({ cloudPath: cloudPath, // 对象存储路径,根路径直接填文件名,文件夹例子 test/文件名,不要 / 开头 filePath: _config.filePath, // 微信本地文件,通过选择图片,聊天文件等接口获取 success: (res) => { //console.log(res.fileID) wx.cloud.getTempFileURL({ fileList: [res.fileID], success: (res) => { //console.log(res.fileList) const _data = {url:res.fileList[0].tempFileURL}; uni.showToast({title: '上传成功', duration: 2000}); _config.success(_data); }, fail: (res) => { uni.showToast({title: res.errMsg, duration: 2000}); }, }) }, fail: (res) => { uni.showToast({title: res.errMsg, duration: 2000}); } })
03-13 - 小程序中如何上传图片到云托管的后端中?
原因是这样的,后端是用的cos去存储图片,但小程序端wx.cloud.callContainer并不能上传图片,而wx.cloud.uploadFile只能上传到云托管的对象储存中, 我是想通过前端将图片给后端处理和保存图片数据并上传到cos中去,请问这个到底要如何去做呢? 就是想小程序直接上传图片到后端,求大神教教
02-27 - 微信云托管搭建fastadmin总是打开页面空白,需要如何处理?
Dockerfile用的TP的,本地Docke正常运行,但是跑云托管就不行了,打开就空白页面。什么都不显示 尝试了50+包了,在内部执行php think发现竟然都执行报错 nginx: [emerg] still could not bind() /xyhd # php think PHP Warning: require(/xyhd/thinkphp/console.php): failed to open stream: No such file or directory in /xyhd/think on line 17 PHP Fatal error: require(): Failed opening required '/xyhd/thinkphp/console.php' (include_path='.:/usr/share/php7') in /xyhd/think on line 17 什么都启动不了,不过根目录静态文件倒是可以访问 nginx也就简单的,实在是不会了,求大神救救 server{ listen 80; server_name localhost; root /xyhd/public; location / { index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; } } # pass the PHP scripts to FastCGI server location ~ \.php(/.*)?$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; add_header Access-Control-Allow-Methods *; add_header Access-Control-Max-Age 3600; add_header Access-Control-Allow-Origin $http_origin; add_header Access-Control-Allow-Headers $http_access_control_request_headers; fastcgi_split_path_info ^((?U).+?\.php)(/.*)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param REMOTE_X_IP $remote_addr; set $Real $proxy_add_x_forwarded_for; if ( $Real ~ (\d+)\.(\d+)\.(\d+)\.(\d+)\.(.*) ) { set $Real $1.$2.$3.$4; } proxy_set_header X-Real-IP $Real; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; fastcgi_param PATH_INFO $fastcgi_path_info; } }
02-26