通过 REST 使用图像创建节点
我已经搜索了所有文档,但仍然不知道如何在 Drupal 7 中创建包含图像字段的节点。我通过 REST 服务创建节点,除了图像之外,一切正常。
我是否必须使用创建节点的发布请求来发布图像数据? (作为多部分?)或者我应该通过 ftp 上传图像并链接(如果,如何?)?
也许其他人也做过类似的工作..谢谢转发..
I have searched all the docs but have still no clue how to create a node in Drupal 7 that contains a image field. I create the node(s) via REST Services and everything works except the image thing.
Do i have to post the image data with the post request that creates the node? (as multipart??) Or should i upload the image via ftp and link (and if, how?) to it?
maybe someone else has done a similar job.. thanks forward..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Rails 2.3.x 中,您必须将表单定义为多部分才能使文件上传工作,因此我认为您还需要将节点创建为多部分。这只是我的猜测,因为我根本没有任何使用 Drupal 的经验。
In Rails 2.3.x you had to define a form as multipart to make file uploads work, so I think you need to create the Node as multipart aswell. Just a guess from my side, since I don't have any experience with Drupal at all.