我在OctoberCMS中制作了一个组件,它导致内存错误。 该组件只有一个非常简单的功能。 我不知道为什么会导致这样的错误。
我已经在php.ini中编辑了memory_limit最多1024M,但没有任何改变。
组件文件
<?php
namespace Jiwon\Byapps\Components;
use Cms\Classes\Page;
use Cms\Classes\ComponentBase;
use Exception;
use Jiwon\Byapps\Models\Comment;
class Comments extends ComponentBase
{
public $comments;
public function componentDetails()
{
return [
'name' => 'Comment List',
'description' => 'comment list'
];
}
public function defineProperties()
{
return [
'display' => [
'title' => 'number of the comments',
'description' => 'number of the comments list',
'default' => 10,
'validationPattern' => '^[0-9]+$',
'validationMessage' => 'only number'
],
];
}
public function onRun()
{
$this->comments = $this->loadComments();
}
protected function loadComments() {
$query = Comment::all();
if ($this->property('display') > 0) {
$query = $query->take($this->property('display'));
}
return $query;
}
}
?>
我将此组件放在了partials之外,此错误显示在每页中。
允许使用的内存大小为134217728字节(尝试分配8192字节) /home/ljw/public_html/byapps_cms/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php第290行
评论模型文件
<?php namespace Jiwon\Byapps\Models;
use Model;
class Comment extends Model
{
use \October\Rain\Database\Traits\Validation;
public $timestamps = false;
public $connection = 'byapps';
public $table = 'BYAPPS_comment_data';
}
答案 0 :(得分:0)
我认为问题在于查询,您正在尝试使用。试试这个代替您的查询。
public function loadComments() {
$query = Comment::query();
if (!empty($this->property('display'))) {
$query = $query->limit($this->property('display'));
}
$query = $query->get();
return $query;
}
是的,当您尝试从表中获取有限的商品时,请不要忘记设置OrderBy(),以便获得所需的结果。