又拍云上传问题

教主,又,麻烦你了。就是又拍云我看了你的PACKAGE的视频,但是有个问题,我发现package里面的上传内容都是得先放到我们自己服务器,再进行操作?但是官方的文档是直接放到了又拍云,我觉得又拍云的文档有点烂,看不懂 希望给点思路

这一坨的API没有看到视频拆解的API呢

这是什么?你把 $flysystem 替换为 Storage::disk() 基本上就OK了

JellyBool

但是有个问题,我发现package里面的上传内容都是得先放到我们自己服务器,再进行操作?

并没有放自己服务器吧,都是直接上传的

BallOon 回复 JellyBool

但是视频中的url地址是写的本地服务器的呀, 还有就是

(1/1) Exception
write content can not be empty.
5.4版本 ,用的你的package 代码 Storage::disk(‘upyun’)->put(’/’,$request->file(‘image’)); 引入
use Illuminate\Support\Facades\Storage;
而且在我用Storage引入upyun的时候没有提示disk这个方法,很尴尬

JellyBool 回复 BallOon

但是视频中的url地址是写的本地服务器的呀

这是什么?哪个地址是本地服务器的地址?

use Storage;

然后确保你的 $request->file(‘image’) 有获取到文件。

BallOon 回复 JellyBool

我重新下载laravel之后又出现。league/flysystem suggests installing ext-fileinfo (Required for MimeType) league/flysystem suggests installing league/flysystem-aws-s3-v2 (Allows you to use S3 storage with AWS SDK v2) league/flysystem suggests installing league/flysystem-aws-s3-v3 (Allows you to use S3 storage with AWS SDK v3) league/flysystem suggests installing league/flysystem-azure (Allows you to use Windows Azure Blob storage) league/flysystem suggests installing league/flysystem-cached-adapter (Flysystem adapter decorator for metadata caching) league/flysystem suggests installing league/flysystem-copy (Allows you to use Copy.com storage) league/flysystem suggests installing league/flysystem-eventable-filesystem (Allows you to use EventableFilesystem) league/flysystem suggests installing league/flysystem-rackspace (Allows you to use Rackspace Cloud Files) league/flysystem suggests installing league/flysystem-sftp (Allows you to use SFTP server storage via phpseclib) league/flysystem suggests installing league/flysystem-webdav (Allows you to use WebDAV storage) league/flysystem suggests installing league/flysystem-ziparchive (Allows you to use ZipArchive adapter) league/flysystem suggests installing spatie/flysystem-dropbox (Allows you to use Dropbox storage) Writing lock file Generating autoload files

BallOon 回复 JellyBool

教主,还有一个问题。。特麻烦你了

bool $flysystem->write(‘file.md’, ‘contents’);

bool $flysystem->writeStream(‘file.md’, fopen(‘path/to/your/local/file.jpg’, ‘r’));

bool $flysystem->update(‘file.md’, ‘new contents’);

bool $flysystem->updateStram(‘file.md’, fopen(‘path/to/your/local/file.jpg’, ‘r’));

bool $flysystem->rename(‘foo.md’, ‘bar.md’);

bool $flysystem->copy(‘foo.md’, ‘foo2.md’);

bool $flysystem->delete(‘file.md’);

bool $flysystem->has(‘file.md’);

string|false $flysystem->read(‘file.md’);

array $flysystem->listContents();

array $flysystem->getMetadata(‘file.md’);

int $flysystem->getSize(‘file.md’);

string $flysystem->getUrl(‘file.md’);

string $flysystem->getMimetype(‘file.md’);

int $flysystem->getTimestamp(‘file.md’);

这一坨的API没有看到视频拆解的API呢

JellyBool 回复 BallOon

这一坨的API没有看到视频拆解的API呢

这是什么?你把 $flysystem 替换为 Storage::disk() 基本上就OK了