我在我们的脸书粉丝页面上添加了一个iFrame页面,它上面有一个简报注册表格,但是我被困在某些东西上.
如果我们的粉丝页面被称为blahblah,则注册页面被称为"BlahBlah Insider Info".当我搜索Blahblah时,该应用程序出现在粉丝页面之前,这不好!
我怎样才能使它不会出现在搜索中,只能从我们的粉丝页面访问?
我是 Laravel 的新手,正在尝试使用此扩展程序:https : //github.com/kawax/laravel-google-sheet从 Google 电子表格中读取数据。
但是,文档并未详细说明每个步骤。
我意识到我必须像这样将提供者放在 app.php 中:'Sheets' => Revolution\Google\Sheets\Sheets::class,,并在我的 app.php 中像这样Sheets' => Revolution\Google\Sheets\Sheets::class,在文档中放置
一个别名。希望这是对的......?
然后,我尝试从第一Laravel例如README.md
use Sheets; // I had to precede with "\"
use Google; // I had to precede with "\"
Sheets::setService(Google::make('sheets'));
Sheets::spreadsheet('myspreadsheetid');
Run Code Online (Sandbox Code Playgroud)
但是我收到这个错误:
Non-static method Revolution\Google\Sheets\Sheets::setService() should not be called statically
Run Code Online (Sandbox Code Playgroud)