Drupal 6:从选择字段获取标签值(CCK 的“允许值”)
在 Drupal 6 中,我有一个带有选择字段的内容类型。该字段的值位于“允许的值”选项中,如下所示:
key1|label1
key2|label2
当我使用 node_load
从该内容类型加载节点时,我仅获取该字段的键,而不是其标签。
有没有简单的方法获得标签?我认为 content_load
可以解决问题,但事实并非如此。
谢谢。
In Drupal 6, I have a content type with a select field. The values for this field are in the "Allowed values" option, like this:
key1|label1
key2|label2
When I load a node from that content type using node_load
, I only get the key of the field, and not its label.
Is there an easy way to get the label? I thought content_load
would do the trick, but it didn't.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此函数可帮助您从 cck 字段获取信息: 获取 a 的允许值Drupal 6.0 CCK领域
This function help to you get info from cck field: Getting the allowed values for a Drupal 6.0 CCK field