Laravel / Ajax将数据传递给控制器​​:数据为空

时间:2019-10-14 15:47:36

标签: php ajax laravel-5.8

我正在尝试使用ajax将两个变量传递给我的控制器。没有错误,但是当我在控制器中获取数据时,数据为空。

Web.php

Route::get('/donate/select-card', 'CardController@chooseCard')->name('select-card');

CardController.php

public function chooseCard()
{
  $from = Input::get("fromAmount");
  // $to = $request->input('toAmount');
  dd($from);
}
  

'null'是这里的输出

Script.js

fromAmount = $(this).find('p span:nth-child(1)').text().split("₹ ")[1];
toAmount = $(this).find('p span:nth-child(2)').text().split("₹ ")[1];
$.ajax({
  type:'GET',
     url: '/donate/select-card',
     data:  { fromAmount : fromAmount, toAmount : toAmount }
});

我想要的是在控制器中包含fromAmount和toAmount。

谢谢。

编辑1

这是来自网络的ajax数据:

enter image description here

0 个答案:

没有答案