如何在 laravel Controller 中获取 Rapidapi?
Posted
技术标签:
【中文标题】如何在 laravel Controller 中获取 Rapidapi?【英文标题】:How to fetch Rapidapi in laravel Controller? 【发布时间】:2020-04-13 14:23:17 【问题描述】:我正在尝试在我的 laravel 应用程序中使用 unirest 获取 API。我遵循了文档中给出的所有步骤,但它向我显示了一个错误。如果unirest
有更好的选择,请告诉我。提前致谢!
这是我的控制器,
public function store(Request $request)
Love::create(
request()->validate([
'name_1' => ['required','max:255'],
'name_2' => ['required','max:255'],
],
[
'name_1.required' => 'You have to Enter Your name',
'name_2.required' => 'You have to Enter Your Crush name'
]));
$headers = array('Accept' => 'application/json');
$response = Unirest\Request::post("API_URL",
array(
"X-RapidAPI-Key" => "API_KEY"
)
);
dd($response);
return view("result");
错误
找不到类“App\Http\Controllers\Unirest\Request”
【问题讨论】:
【参考方案1】:您需要导入Unirest\Request
类。
<?php
namespace Your\Namespace;
use Unirest\Request;
class YourClass
...
如果您不导入它,默认情况下它将在当前命名空间中查找类(在您的情况下为App\Http\Controllers
)。
【讨论】:
以上是关于如何在 laravel Controller 中获取 Rapidapi?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 laravel Controller 中获取 Rapidapi?
如何在 Laravel Controller 中创建 SQL Join 语句
Laravel Controller:如何使用函数存储和创建