我正在尝试迁移一个旧的Plone 3.3站点,该站点使用FileSystemStorage使用Mikko的简单JSON导出脚本。
一切运行良好,除了图像字段上没有值,这些字段作为空字符串(''
)返回:
[
...
{
"allowDiscussion": false,
"contributors": [],
"creation_date": "2009-11-04T15:15:36-02:00",
"creators": [
"johndoe"
],
"description": "",
"effectiveDate": null,
"excludeFromNav": false,
"expirationDate": null,
"id": "banner_vertical.jpg",
"image": "",
"language": "",
"location": "",
"modification_date": "2009-11-04T15:15:37-02:00",
"portal_type": "Image",
"relatedItems": [],
"rights": "",
"subject": [],
"title": "Banner vertical",
"urlLegend": "http://"
},
...
]
有什么提示吗?
(使用的iw.fss版本为2.8.0rc5).
FSS不为脚本所针对的站点所知或使用。
您可能需要对convert()
和其他方法进行改进以支持您的用例。