我要做的是将一个变量从我的视图传递给一个控制器函数。问题是我从未被路由到我的控制器的函数库。所以我不能检查我是否得到变量同样。 ajax函数似乎工作(显示警报)但我从来没有从我的控制器获得消息成功..
到目前为止,我的路线文件是:
Route::get('pois', array(
'uses' => 'MapController@create',
'as' => 'pois.create'
));
Route::post('pois', array(
'uses' => 'MapController@store',
'as' => 'pois.get'
));
我的MapController是:
public function create()
{
$bar=new Map;
$rest=new Map;
$mag=new Map;
$bar = Map::where('type', '=', 'bar')->take(10)->get();
$rest = Map::where('type', '=', 'restaurant')->take(10)->get();
$mag = Map::where('type', '=', 'magazine')->take(10)->get();
return View::make('pois.markers')->with('bar',$bar)->with('rest',$rest)->with('mag',$mag);
}
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
dd('suceess');
}
我的javascript-jquery脚本如下:
function ajaxCall(id) {
$.ajax
({
type: "POST",
url: "pois",
data: {"id" : id},
success: function(response)
{
alert('ok');
}
});
}
function checkBoxes(elem){
if(document.getElementById(elem).checked==true){
ajaxCall(elem);
}
else{
clearMarkers(elem);
}
}
Bellow也是我的HTML:
@section('main_contents')
<br/>
<div class="text-center">
<label class="checkbox-inline">
<input type="checkbox" id="bar" name="group" value="option1" onClick="checkBoxes(this.id)"> Καφετέριες
</label>
<label class="checkbox-inline">
<input type="checkbox" id="restaurant" name="group" value="option2" onClick="checkBoxes(this.id)"> Εστιατόρια
</label>
<label class="checkbox-inline">
<input type="checkbox" id="magazine" name="group" value="option3" onClick="checkBoxes(this.id)"> Μαγαζιά
</label>
<br/>
</div>
<div id="map" style="height:500px;"></div>
@stop
答案 0 :(得分:1)
您没有收到success
消息,因为您没有从控制器返回任何消息。
将dd('success');
更改为return 'success';
public function store()
{
return 'success';
}
您的Ajax代码:
$.ajax
({
type: "POST",
url: "pois",
data: {"id" : id},
success: function(response)
{
alert(response);
}
});
修改强>
将网址url: "pois"
更改为url: "/pois"
,
Jquery代码:
$( document ).ready(function() {
$(".checkbox").change(function() {
if(this.checked) {
var id = $('.checkbox').val();
var request = $.ajax({
url: '/pois',
type: "POST",
data: { id : id },
dataType: "html"
});
request.done(function(result) {
if(result == 'success') {
alert("Success");
} else {
alert ("Sorry! unable to add the data");
}
});
request.fail(function(jqXHR, textStatus) {
console.log( "Request failed: " + textStatus );
});
}
});
});
HTML code:
@section('main_contents')
<br/>
<div class="text-center">
<label class="checkbox-inline">
<input type="checkbox" id="bar" class="checkbox" name="group" value="1"> Καφετέριες
</label>
<label class="checkbox-inline">
<input type="checkbox" id="restaurant" class="checkbox" name="group" value="2"> Εστιατόρια
</label>
<label class="checkbox-inline">
<input type="checkbox" id="magazine" class="checkbox" name="group" value="3"> Μαγαζιά
</label>
<br/>
</div>
<div id="map" style="height:500px;"></div>
@stop
我没有测试过代码,但应该可以使用。
答案 1 :(得分:0)
在向控制器发出ajax调用时...您可以像这样检查
$jsonResponse = [
'imageReceived' => $r->hasFile('profilePicture')
];
return $jsonResponse;
这将以真或假的方式将响应返回到控制台
{"imageReceived":false}