我使用ajax在yii2中开发了一个搜索栏。问题是Yii::$app->request->isAjax
属性始终返回false
这是我的动作:
public function actionAjaxsearch()
{
if(Yii::$app->request->isAjax)
{
$keywords = Yii::$app->request->queryParams;
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
'data' => $keywords,
'code' => 200
];
}
else throw new \yii\web\HttpException(404, 'Page not found.');
这是我的脚本:
$('#search-box').keyup(function( event ){
event.preventDefault();
$.ajax({
url: 'http://localhost/items/ajaxsearch',
data: {keywords: $( '#search-box' ).val()},
type: 'GET',
dataType: 'json',
}).done(function(){
console.log('success');
}).fail(function( data ){
alert( data );
}).always(function(){
alert('finished');
})
});
如果我不将
if
与Yii::$app->request->isAjax
一起使用,则控制器仅使用数据呈现JSON。P.D
#search-box
的内容已成功传递。编辑为@SilverFire
不要在垃圾场里放一些
["HTTP_X_REQUESTED_WITH"] => not defined,
["HTTP_ACCEPT"]=> string(74) "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
["CONTENT_TYPE"] =>not defined,
["HTTP_CONTENT_TYPE"] =>not defined,
["REQUEST_METHOD"]=> string(3) "GET",
["HTTP_X_HTTP_METHOD_OVERRIDE"] =>not defined,
最佳答案
好吧,由于某些原因,您的浏览器不会将HTTP_X_REQUESTED_WITH
标头发送到服务器。
它猜测它可能与以下内容有关:Missing X-Requested-With: XMLHttpRequest (causes 200 OK But Shows as Error?)和Cross-Domain AJAX doesn't send X-Requested-With header