Laravel Ajax Call to a function in controller(Laravel Ajax 调用控制器中的函数)
问题描述
我是 laravel 的新手,我想对用控制器编写的函数进行 ajax 调用.我做了以下但没有工作.
在视图中:
$.ajax({类型:POST",url: 'OrderData',//不确定在此处添加什么作为 URL数据:{ id:7 }}).done(函数(味精){警报(味精);});
我的控制器位于 app/controllers/DashBoardController.php在 DashBoardController.php 里面我有
class DashBoardController 扩展 BaseController {公共函数 DashView(){返回视图::make('dashboard');}public function OrderData(){//这是我想从 ajax 调用的函数返回我在";}}
我的问题是如何从页面加载视图到我的 DashBoardController.php 中的函数进行 ajax 调用?谢谢.
在你的 routes.php
文件中添加
Route::post('/orderdata', 'DashBoardController@OrderData');
然后使用您的 ajax 调用将数据发送到 /orderdata
数据将传递到 DashBoardController
中的 OrderData
方法p>
所以你的 ajax 调用会变成
$.ajax({类型:POST",url: '/orderdata',//这是我更新的数据:{ id:7 }}).done(函数(味精){警报(味精);});
如果你想访问数据,你需要像这样将它添加到你的方法中
class DashBoardController 扩展 BaseController {公共函数 DashView(){返回视图::make('dashboard');}public function OrderData($postData){//这是我想从 ajax 调用的函数//用那个帖子数据做一些很棒的事情返回我在";}}
并更新您的路线
Route::post('/orderdata/{postdata}', 'DashBoardController@OrderData')
I am new to laravel and I want to make an ajax call to a function written in controller. I have done the following but not working.
In View :
$.ajax({
type: "POST",
url: 'OrderData', // Not sure what to add as URL here
data: { id: 7 }
}).done(function( msg ) {
alert( msg );
});
My Controller which is located inside app/controllers/DashBoardController.php and inside DashBoardController.php I have
class DashBoardController extends BaseController {
public function DashView(){
return View::make('dashboard');
}
public function OrderData(){ // This is the function which I want to call from ajax
return "I am in";
}
}
My Question is how can I make an ajax call from view on page load to a function inside my DashBoardController.php ?? Thanks.
In your routes.php
file add
Route::post('/orderdata', 'DashBoardController@OrderData');
Then use your ajax call to send data to /orderdata
the data will be passed through to your OrderData
method in the DashBoardController
So your ajax call would become
$.ajax({
type: "POST",
url: '/orderdata', // This is what I have updated
data: { id: 7 }
}).done(function( msg ) {
alert( msg );
});
If you want to access the data you will need to add that into your method like so
class DashBoardController extends BaseController {
public function DashView(){
return View::make('dashboard');
}
public function OrderData($postData){ // This is the function which I want to call from ajax
//do something awesome with that post data
return "I am in";
}
}
And update your route to
Route::post('/orderdata/{postdata}', 'DashBoardController@OrderData')
这篇关于Laravel Ajax 调用控制器中的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel Ajax 调用控制器中的函数
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01