我有一个应用程序,用户提交一个表单,执行SOAP交换以从Web API获取一些数据。如果在特定时间内请求太多,则Throttle服务器拒绝访问。我为此throttle.blade.php
创建了一个自定义错误视图,该视图保存在resources\views\pages
下。在routes.php
中,我将路线命名为:
Route::get('throttle', 'PagesController@throttleError');
在PagesController.php
我已将相关功能添加为:
public function throttleError() {
return view('pages.throttle');
}
这是我为执行SOAP交换而创建的SoapWrapper
类:
<?php namespace App\Models;
use SoapClient;
use Illuminate\Http\RedirectResponse;
use Redirect;
class SoapWrapper {
public function soapExchange() {
try {
// set WSDL for authentication
$auth_url = "http://search.webofknowledge.com/esti/wokmws/ws/WOKMWSAuthenticate?wsdl";
// set WSDL for search
$search_url = "http://search.webofknowledge.com/esti/wokmws/ws/WokSearch?wsdl";
// create SOAP Client for authentication
$auth_client = @new SoapClient($auth_url);
// create SOAP Client for search
$search_client = @new SoapClient($search_url);
// run 'authenticate' method and store as variable
$auth_response = $auth_client->authenticate();
// add SID (SessionID) returned from authenticate() to cookie of search client
$search_client->__setCookie('SID', $auth_response->return);
} catch (\SoapFault $e) {
// if it fails due to throttle error, route to relevant view
return Redirect::route('throttle');
}
}
}
一切正常,直到我达到Throttle服务器允许的最大请求数,此时它应显示我的自定义视图,但它显示错误:
InvalidArgumentException in UrlGenerator.php line 273:
Route [throttle] not defined.
我无法弄清楚为什么说没有定义路线。
答案 0 :(得分:11)
您没有为路线定义名称,只定义路径。您可以像这样定义您的路线:
Route::get('throttle', ['as' => 'throttle', 'uses' => 'PagesController@throttleError']);
该方法的第一部分是您在案例中定义路径的路径,如/throttle
。作为第二个参数,您可以使用选项传递数组,您可以在其中指定路由(as
)和回调(在本例中为控制器)的唯一名称。
您可以在documentation中了解有关路线的更多信息。