2

SS 不保存 DataObject(扩展名)与 Image 的关系;我认为问题可能出在 SiteConfig ModelAdmin 上。

这是(部分)站点配置扩展类:

class CustomSiteConfig extends DataExtension { 
    static $has_many = array(
        'HeaderSections' => 'HeaderSection',
        'FooterSections' => 'FooterSection',
    );

    public function updateCMSFields(FieldList $fields) {
        ...
        $fields->addFieldToTab('Root.Header', $gridFieldHeader);
        ...
    }
}

当然,我已将所需的代码添加到 _config 中。

这是(部分)DataObject 扩展 HeaderSection:

class HeaderSection extends DataObject {
    public static $has_many = array(
        'Sections' => 'HeaderSubSection'
    );

    public function getCMSFields() {
        ...
        $gridField = new GridField('Sections', 'Dropdown Sections', $this->Sections(), $gridFieldConfig);
        ...
    }
}

属于 HeaderSection 的 DataObject 扩展类称为 HeaderSubSection:

class HeaderSubSection extends DataObject {
    static $has_one = array(
        'HeaderSection' => 'HeaderSection',
        'InternalLink' => 'SiteTree',
        'Image' => 'Image'
    );

    public function getCMSFields() {
        ...
        $fields->addFieldToTab('Root.Main', new UploadField('Image', 'Section Image', $this->Image()));
        ...
    }
}

其他一切正常,所有其他字段都保存(包括“内部链接”及其关系),但是我无法保存图像。

我是否需要将标题部分移动到它自己的 ModelAdmin 页面,然后以某种方式将它们链接回 SiteConfig?

4

1 回答 1

0

我最终将另一个图像字段添加到 has_one,并且它起作用了。

猜猜 SS 不喜欢将图像字段命名为“图像”。

于 2013-06-20T22:56:50.057 回答