Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件添加到我的自动加载文件中,我正在尝试调用控制器函数。
问题是这个函数也是从我的 .js 文件中调用的,我想调用的方法是接受Input我通过 tha ajax 调用传递的变量。现在我的问题是如何从另一个 php 文件调用控制器并传入 post 变量。
Input
我可以使用该Route::post方法,但如何传递 post 变量?
Route::post
有人告诉我,我可以通过国际奥委会做到这一点,但我不知道这将如何运作。谢谢
Route::post()用于在您的应用中注册路线。Laravel 带有一个 Client 类(来自 Symfony),你可以使用它来请求一个 url。
Route::post()
但是,如果您想从另一个控制器调用方法,只需执行$res = FooController::method();
$res = FooController::method();