Plone:使用 Dexterity 生成的文件夹内容类型。如何填充它的文件、图像和富文本字段?
我使用 Dexterity 创建了一些新的内容类型。我现在希望从 python 脚本创建内容。下面的行一切正常,并且该项目是在目标文件夹中生成的,具有正确的 id 和 日期。但是,如何将文件数据传递到 file 字段,将 image 数据传递到 image 字段,并将 richt_text 数据传递到 rich_text 字段呢?
target.invokeFactory(type_name="content_type_name", id=id, date=date, file=file, image=image, rich_text=rich_text)
我能算出的日期; Dexterity 想要 Python 日期时间格式:
datetime.datetime(2011,1,1)
非常感谢您的帮助 - 我确信我在这里遗漏了一些非常基本的东西,但还没有找到它 - 可能是因为我找错了地方。
I have made some new content type using Dexterity. I now wish to create the content from a python script. All is well with the line below, and the item is generated in the target folder with the correct id and date. But how do you pass the file data to a file field, the image data to the image field and the richt_text data to the rich_text field?
target.invokeFactory(type_name="content_type_name", id=id, date=date, file=file, image=image, rich_text=rich_text)
The date I could figure out; Dexterity wants the Python datetime format:
datetime.datetime(2011,1,1)
Thank you very much for your help - I am sure I am missing something quite elementary here, but haven't found it - probably because I am looking in the wrong place.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于文件,使用 plone.namedfile.NamedFile;对于图像,使用 plone.namedfile.NamedImage;对于富文本,使用 plone.app.textfield.value.RichTextValue
。
For file use plone.namedfile.NamedFile and for image use plone.namedfile.NamedImage and for rich text use plone.app.textfield.value.RichTextValue
e.g.