0
我目前正在開發一個在幾個站點上實現API集成的項目。如何在Laravel 5.2中直接從Controller發送API請求?
現在,我注意到我在我的項目中使用JQuery使用了太多的AJAX請求(其代碼可在頁面源上查看),並且我想盡可能地限制它。
是否有辦法直接從Laravel 5.2中的任何控制器發送API請求,就像下面的代碼一樣?
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HttpRequestController extends Controller
{
public function PostRequest($uri, $data) {
//functional code that will post the given data to the specified uri
}
public function GetRequest($uri) {
//functional code that will retrieve the given data via the specified uri
}
}
謝謝隊友。我會仔細研究一下這個問題。 –