about "switch" MB view

Support MB Views about "switch" MB view

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #48868
    369cycle369cycle
    Participant

    The current syntax is running normally. Is there a way to write it similar to "switch"? If I add more, I am worried that the performance will be poor.

    {% if post.one_show.value == 'album' %}
        {% include 'one_album' %}
    {% elseif post.one_show.value == 'download' %}
        {% include 'one_download' %}
    {% elseif post.one_show.value == 'faq' %}
        {% include 'one_faq' %}
    {% elseif post.one_show.value == 'video' %}
        {% include 'one_video' %}
    {% elseif post.one_show.value == 'link' %}
        {% include 'one_link' %}
    {% elseif post.one_show.value == 'area' %}
        {% include 'one_area' %}
    {% else %}
        <p>沒有設置任何功能</p>
    {% endif %}
    
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.