gpt4 book ai didi

php - Yii2:isAjax 返回 false

转载 作者:行者123 更新时间:2023-12-01 03:36:08 24 4
gpt4 key购买 nike

我正在使用 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');
})
});

如果我不将 ifYii::$app->request->isAjax 一起使用, Controller 只会渲染带有数据的 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 header 发送到服务器。

猜测可能与:Missing X-Requested-With: XMLHttpRequest (causes 200 OK But Shows as Error?)有关和 Cross-Domain AJAX doesn't send X-Requested-With header

关于php - Yii2:isAjax 返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34177008/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com