500(内部服务器错误)

  • 本文关键字:错误 服务器 内部 php yii2
  • 更新时间 :
  • 英文 :


我想使用ajax将数据插入到带有post请求的表中,但我无法读取仅使用ajax发送的数据,这是我的代码:

Ajax代码:

$('#newList').on('beforeSubmit', function(e){
e.preventDefault();
$("#newList").modal('hide');
$("#title").val("");
load(1);
$.ajax({
url: '/site/add-list',
type: 'post',
data: {title : $("#title").val()},
success: function(data) {
console.log(data); // return 500 (Internal Server Error)
}
});

});

控制器:

public function actionAddList()
{
$req = Yii::$app->request;
$newList = new Boards();
return $req->post(); // return 500 (Internal Server Error)
}

每次我发送帖子请求时,控制台上都会显示500(内部服务器错误(。但是当我为ex返回字符串时;asdasd";它是有效的。我该怎么解决这个问题?

很抱歉延迟响应,所以问题出在我的控制器上,它应该是这样的,这样ajax就可以读取返回的值

public function actionAddList()
{
$req = Yii::$app->request;
if ($req->isAjax) {
$res = ['data' => $req->post()];
$newList = new Lists();
$newList->title = $res["data"]["title"];
$newList->save();
echo $res["data"]["title"]; // Isnt error anymore
} else {
return false;
}

}

我得到错误是因为我在控制器上返回了一个数组,所以我只需要做一些类似的事情

// Bad
return array(
"data" => 'blabla'
);
// Good
$dat = array(
"data" => "blabla"
);
return $dat["data"];

我从控制台得到500错误的原因可能来自YII,因为响应内容不能是数组。

if (is_array($this->content)) {
throw new InvalidArgumentException('Response content must not be an array.');
} elseif (is_object($this->content)) {
if (method_exists($this->content, '__toString')) {
$this->content = $this->content->__toString();
} else {
throw new InvalidArgumentException('Response content must be a string or an object implementing __toString().');
}
}

相关内容

  • 没有找到相关文章

最新更新