ajaxがどのような動きか知りたいと思っております。
この場合、①web.php ②jsのgetSelectFunction⇒ajax/dropdownList ③AjaxControllerのgetDropdownList
④jsの.done(function (response)のresponseで値を受け取る。
順番はあってますでしょうか。
php
1//web.php 2Route::get('ajax/dropdownList', 'Ajax\AjaxController@getDropdownList');
js
1function getSelectFunction(pageId){ 2 var data = { 3 pageId: pageId 4 }; 5 $.ajax({ 6 type: 'get', 7 url: _url + 'ajax/dropdownList', 8 dataType: 'json', 9 data: data, 10 }).done(function (response) { 11 _dropDownArr = response.Data; 12 }).fail(function (data, textStatus, xhr) { 13 }); 14 15}
php
1//AjaxController 2 public function getDropdownList(Request $request) 3 { 4 … 5 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。