Plone:使用 Dexterity 生成的文件夹内容类型。如何填充它的文件、图像和富文本字段?

发布于 2024-11-09 21:24:25 字数 560 浏览 4 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2024-11-16 21:24:25

对于文件,使用 plone.namedfile.NamedFile;对于图像,使用 plone.namedfile.NamedImage;对于富文本,使用 plone.app.textfield.value.RichTextValue

from plone.namedfile import NamedFile
from plone.namedfile import NamedImage
from plone.app.textfield.value import RichTextValue

file = NamedFile("<html></html>", "text/html", u"text.html")
logo = ... some binary data in a byte string ...
image = NamedImage(logo, filename="logo.gif")
rich_text = RichTextValue(u"<p>A paragraph</p>", 'text/html', 
        'text/x-html-safe', 'utf-8')
target.invokeFactory(type_name="content_type_name", id=id, date=date, file=file,
        image=image, rich_text=rich_text)

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.

from plone.namedfile import NamedFile
from plone.namedfile import NamedImage
from plone.app.textfield.value import RichTextValue

file = NamedFile("<html></html>", "text/html", u"text.html")
logo = ... some binary data in a byte string ...
image = NamedImage(logo, filename="logo.gif")
rich_text = RichTextValue(u"<p>A paragraph</p>", 'text/html', 
        'text/x-html-safe', 'utf-8')
target.invokeFactory(type_name="content_type_name", id=id, date=date, file=file,
        image=image, rich_text=rich_text)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文