我正在尝试使用ajax从控制器的视图中更改控制器内的 $ MONTH ,但是我对如何执行此操作感到困惑,应该使用 POST 还是 GET 方法?而且我想使用输入或选择html元素,如果我做错了,请纠正我。
控制器:
public function days(Request $request){
$days=array();
$id = $request->input('months');
$month = $id;
$year = 2018;
for($d=1; $d<=31; $d++) {
$time=mktime(12, 0, 0, $month, $d, $year);
if(date('m', $time)==$month && date('w', $time)>0 && date('w', $time)<6) {
$days[]=date('Y-m-d H:i:s', $time);
}}
$.ajaxSetup({
headers: { 'X-CSRF-Token' : $('meta[name=_token]').attr('content') }
});
ajax({
url:'days',
type: 'get',
data: {
months:1
},
success: function( data ){
console.log(data);
},
});
路线:
Route::get('days', 'PivotController@days' );
答案 0 :(得分:1)
enter code here
您可以像使用ajax一样明确地工作。
jQuery.ajax({
url: '<?php echo url("/ajax-data-type");?>', // Url to which the request is send
type: "POST", // Type of request to be send, called as method
data:{"month":1,"_token": "{{ csrf_token() }}"},
success: function (response) // A function to be called if request succeeds
{
jQuery(".loader-wrapper").addClass('hide');
$('#ajax_data').html(response);
if(response.status == false){
SITE.initNotifications('alert-danger', '', response.result);
}
}
});