gpt4 book ai didi

php - Laravel 非静态方法问题

转载 作者:行者123 更新时间:2023-12-04 21:59:56 25 4
gpt4 key购买 nike

有以下模型:

新闻.php

class News extends Aware {

public static $table = 'noticia';
public static $key = 'idnoticia';
public static $timestamps = false;

public static $rules = array(
'titulo' => 'required',
'subtitulo' => 'required',
);

public function images()
{
return $this->has_many('Image');
}
}

image.php

class Image extends Aware {

public static $timestamps = true;

public static $rules = array(
'unique_name' => 'required',
'original_name' => 'required',
'location' => 'required',
'news_id' => 'required',
);

public function news()
{
return $this->belongs_to('News');
}

}

然后在 Controller 中执行以下操作:

$image = new Image(array(
'unique_name' => $fileName,
'original_name' => $file['file']['name'],
'location' => $directory.$fileName,
'news_id' => $news_id,
));
News::images()->insert($image);

我不断收到以下错误消息:

Non-static method News::images() should not be called statically, assuming $this from incompatible context

知道我做错了什么吗?

似乎不需要设置public static function images(),因为刷新后我收到一条错误消息

$this when not in object context

Gordon 说通过执行 News::images()->insert($image); 我正在执行静态调用,但这就是 saw 的做法

最佳答案

您缺少一些步骤。

图像属于新闻,但您没有引用要更新的新闻帖子。
你可能想这样做:

$image = new Image(array(...));
$news = News::find($news_id);
$news->images()->insert($image);

更多内容在 docs .

关于php - Laravel 非静态方法问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14126651/

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