drupal 中奇怪的内容类型

发布于 2024-11-01 13:20:54 字数 153 浏览 1 评论 0原文

我想为我的属性设置一个内容类型。我们将其命名为“我的属性”。

我有一个名为“我的财产类型”的分类法,其中包含“书籍、鞋子、衣服”。

添加属性的表单会根据分类所选项目而变化,因为每种类型都有不同的字段。

drupal 中可能有这样的内容类型吗?

i want to have a content type for my properties. let's name it 'my properties'.

and i have a taxonomy called 'my properties type' that contains 'books,shoes,clothes'.

the form for adding properties change on taxonomy selected item,because each of its type have different fields.

is it possible to have such content type in drupal ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

帅气称霸 2024-11-08 13:20:54

Drupal 中的解决方案是为每个属性类型创建单独的内容类型。但是,您可以轻松编写一些 jquery 来在修改分类字段时显示/隐藏字段:

        $('#your-taxonomy-dropdown').change(function() {
           if($(this).val() == 'book') {
              $('#field1').hide();
              $('#field2').show();
           }        
        });

The solution within Drupal is to create separate content types for each property type. However, you can easily write some jquery to show/hide fields when taxonomy field is modified:

        $('#your-taxonomy-dropdown').change(function() {
           if($(this).val() == 'book') {
              $('#field1').hide();
              $('#field2').show();
           }        
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文