我正在使用 Silverstipe / Blog 模块作为我的基本Blog功能。我将扩展与类别和标签具有相同功能的字段。
很遗憾, $ many_many 不适用于我的扩展文件。
这是我遇到的错误。
[紧急]未捕获到的LogicException:related_many_many关系MyProject \ Model \ BlogIndustry.BlogPosts指向SilverStripe \ Blog \ Model \ BlogPost而不匹配many_many
这是我的附加DataObject。
<?php
namespace MyProject\Model;
use SilverStripe\ORM\DataObject;
use Silverstripe\Blog\Model\BlogObject;
use Silverstripe\Blog\Model\CategorisationObject;
use SilverStripe\Blog\Model\Blog;
use SilverStripe\Blog\Model\BlogPost;
/**
* A blog tag for keyword descriptions of a blog post.
*
*
* @method Blog Blog()
*
* @property string $Title
* @property string $URLSegment
* @property int $BlogID
*/
class BlogIndustry extends DataObject implements CategorisationObject
{
/**
* Use an exception code so that attempted writes can continue on
* duplicate errors.
*
* @const string
* This must be a string because ValidationException has decided we can't use int
*/
const DUPLICATE_EXCEPTION = 'DUPLICATE';
/**
* {@inheritDoc}
* @var string
*/
private static $table_name = 'EllisCo_BlogIndustry';
/**
* @var array
*/
private static $db = [
'Title' => 'Varchar(255)',
'URLSegment' => 'Varchar(255)'
];
/**
* @var array
*/
private static $has_one = [
'Blog' => Blog::class
];
/**
* @var array
*/
private static $belongs_many_many = [
'BlogPosts' => BlogPost::class
];
/**
* {@inheritdoc}
*/
protected function getListUrlSegment()
{
return 'industry';
}
/**
* {@inheritdoc}
*/
protected function getDuplicateError()
{
return _t(__CLASS__ . '.Duplicate', 'A blog industry already exists with that name.');
}
}
这是我包含在扩展文件中的内容
private static $many_many = [
"Industries" => BlogIndustry::class,
];
非常感谢您的帮助。
答案 0 :(得分:1)
好的,我已经开始工作了。我错误地为我的命名空间输入了错误的路径。
谢谢那些看过这个问题的人:)