使用dropbox graham(Laravel)上传文件时出错

时间:2017-02-01 09:42:42

标签: php laravel dropbox dropbox-api dropbox-php

我有一个表单,当我点击提交并且它调用控制器但是这给了我一个错误:

  • Class' GrahamCampbell \ Dropbox \ Facades \ Dropbox \ WriteMode'找不到

此外,我尝试在我的保管箱中创建一个文件夹,以检查是否有问题可以调用该类,但是它有效。

<Grid> <!-- high level container to ensure buttons grid is visible -->
    <Grid.RowDefinitions>
        <RowDefinition Height="*" />
        <RowDefinition Height="auto" /> <!-- this row take precedence over first one -->
    </Grid.RowDefinitions>
    <Grid Grid.Row="0" ... > <!-- image grid -->
        ...
        <Image ... /> 
    </Grid>
    <Grid Grid.Row="1"> <!-- buttons grid -->
        ...
        <RadioButton ... />
    </Grid>
</Grid>

2 个答案:

答案 0 :(得分:0)

我从未使用过laravel dropbox。 但是您使用的包不包含WriteMode类。 该包确实需要dropbox / dropbox-sdk包,这确实包含WriteMode类(https://github.com/dropbox/dropbox-sdk-php/blob/master/lib/Dropbox/WriteMode.php)。

所以如果你use Dropbox\WriteMode我觉得它会起作用。

答案 1 :(得分:0)

尽管我试图调用WriteMode类,但由于某种原因,该函数没有正确调用WriteMode。所以我最终使用Dropbox Adapter并知道它有效。