私の次のコードに何か問題はありますか? 500(内部サーバーエラー) 私は、私は一日のためではなく、すべてのソリューションなしで検索しましたおかげで...laravel with ionic:500(内部サーバーエラー)
、なぜ知っていると誰でも役立つことを願っていない:それは常に示しCAZ。何か不足していますか? そして私はionicを使ってモバイルアプリケーションを行っています。
//コントローラ
public function touristsData(){//get
$postdata = file_get_contents("php://input");
$request = json_decode($postdata,true);
$location = $request['location'];
if(empty($location) != true){
$tourists = User::where('block','0')
->where('location', $location)
->orderBy('updated_at', 'desc')
->get();
}else{
$tourists = User::where('block','0')
->orderBy('updated_at', 'desc')
->get();
}
return View::make('frontend.data.touristsData',array('tourists'=>$tourists));
}
//app.js(angularjs)
$scope.submitForm = function(){
if($scope.filter.want == 'company'){
$http({
method : 'POST',
url : './touristsData',
beforeSend: function (xhr) {
var token = document.getElementById('token').getAttribute('content');
if (token) {
return xhr.setRequestHeader('X-CSRF-TOKEN', token);
}
},
data : {
'location': $scope.filter.location
},
headers : {'Content-Type': 'application/x-www-form-urlencoded'}
})
.success(function(data){
$scope.tourists = data;
});
$scope.modal.hide();
}
}
多くの感謝!
新を投稿しないでください質問 - 代わりにこれを編集してください。 –
遅れて申し訳ありません。なぜコンパクト(「観光客」)を使っていますか? – franklee
'array( 'touristists => $ touristists)'を呼ぶのと同じです。 http://php.net/manual/en/function.compact.php –