我在Yii2应用程序中使用https://github.com/creocoder/yii2-flysystem。我在配置
中设置了以下内容rescue_from
在我的控制器中,我打电话给以下
'azureFs' => [
'class' => 'creocoder\flysystem\AzureFilesystem',
'accountName' => 'mystorageacctname',
'accountKey' => 'its-really-long-alphanumeric-special-char-key',
'container' => 'pathforstorage',
],
然而,我收到此错误:
InvalidArgumentException提供的URL无效。
我也安装了所有依赖项。我不确定我哪里出错了。