0

我正在尝试使用 CAdvancedARBehavior 将图像附加到帖子中,MANY_MANY 关系有效,但是当我尝试将其保存为对象时

"Object of class Image could not be converted to int"

$image->save();
$this->images = $image;

如果我这样做,相同的代码部分有效

$image->save();
$this->images = $image->id;

但是它只会保存一张图片,如果我尝试添加一张新图片,它会替换连接表中的旧图片,因此每个帖子一次只有一张图片。

4

1 回答 1

0

如果您需要更多需要成为数组的图像:

$image->save();
// add to image current list
$this->images[] = $image;
于 2013-01-09T11:44:12.460 回答