BallOon

2637 经验值

也就是说 ,比如我的服务器的表单提交地址为 xxx.com/create 然后在里面的form表单的action是 'store' 这个url 也就是访问到了xxx.com/store 这个方法,根据视频所讲的东西,那么如果我在本地访问服务器并且使用Package上传到又拍云,我这里执行了form表单从create到store的提交,那么这个我提交的东西是先到xxx.com服务器,然后再到又拍云?还是说直接就到了又排云,不会在我的服务器留下我上传的温条件?因为我看了官方的package和别人的demo,貌似写的方法是直接到vo.upyun.com类似这样的连接,而不是我们自己服务器的连接。。

但是我觉得他的官方文档并没有很明确的写好api接口地址,调用方式,我就有电蒙蔽了。。不知道视频的package能否有这个功能?

就是说当我本地如果写的action的地址是我本地的时候,这时候如果我根据教程用的package上传了的视频,是先到了我自己的服务器,再又我的服务器穿到又拍云呢?

额,教主又得麻烦你了。
关于又拍云的其他API,比如视频裁剪功能,比如其他的一些API,在视频的package是否有这个api接口呢

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

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呢

我重新下载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

但是视频中的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这个方法,很尴尬

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

就是我们显著地laravist都不能避免这个问题吗?

教主啊,还有一个问题,关于又拍云的防盗链的token的那个东东,如果那个只是一个资源的话,他自己又一个token的东西能去限制用户是否有权限访问改资源,但是如果这个资源的后缀的token给了别人,别人不也一样可以访问该资源了吗?我刚询问了又牌运的技术,他们告诉我这个东西需要我们自己做处理,但是我确实没有很好的思路去解决这个问题,希望教主能给我一些思路咯

还有一个问题,就是关于h5对于安卓不是很友好,比如我刚才测试7牛云的时候出现了不能全屏播放的问题,这个问题在ios怎么解决的呢?