WP API V2的Nuxt / Vue导航菜单问题

问题描述 投票:0回答:1

我正在使用Nuxt和无头wordpress建立一个网站。所有数据均来自wordpress api(wp-json)。

我在导航菜单,父/子菜单项方面遇到问题。

单击父元素时,具有子元素的每个菜单项都会立即触发。我需要它来触发我单击的那一个。

Here's what happens @click right now

这里是我到目前为止的内容:

HTML:

<nav>
    <div class="">
      <!-- Triggers burger menu -->
      <ul :class="isOpen ? 'block' : 'hidden'" class="sm:flex">
        <!-- Loop through the parent navigation -->
        <!-- Add click event to trigger dropdown menu -->
        <li class="sm:mx-8 text-white cursor-pointer py-4 sm:py-0" 
            v-for="item in linksArray" 
            :key="item.ID"
            @click="isOpen = !isOpen"
        >
          <!-- Insert the data from wp-json -->
          <div class="">
            <!-- Parent navigation elements -->
            <div class="flex items-center">
              <div class=""> {{item.title}} </div>
            </div>
            <!-- Child navigation here -->
            <div>
              <!-- Trigger show or hide child elements on click from above -->
              <ul 
              v-show="isOpen" 
              class="sm:absolute bg-gray-800 rounded mt-4"
              >
                <!-- Loop through the child elements -->
                <li class="text-white rounded hover:bg-gray-700 cursor-pointer py-2 px-2"
                    v-for="childItem in item.child_items" 
                    :key="childItem.ID"
                >
                  <!-- Insert the data for children from wp-json -->
                  <nuxt-link :to="childItem.url">
                    <div class="flex items-center">
                      <span class="title">
                        {{ childItem.title }}
                      </span>
                    </div>
                  </nuxt-link>

                </li>
              </ul>
            </div>
          </div>
        </li>
      </ul>
    </div>
  </nav>

脚本:

<script>
  export default {
    name: "Navbar",
    props: {
      linksArray: {
        type: Array
      },
    },
    data() {
      return {
        isOpen: false,
      };
    },
    watch: {
      // Use to close the menu on route change
      '$route'() {
        this.isOpen = false;
      },
    }
  };
</script>

wp-json菜单响应

{
"term_id": 2,
"name": "Main",
"slug": "main",
"term_group": 0,
"term_taxonomy_id": 2,
"taxonomy": "nav_menu",
"description": "",
"parent": 0,
"count": 14,
"filter": "raw",
"items": [
{
"ID": 319,
"post_author": "1",
"post_date": "2020-01-11 21:42:33",
"post_date_gmt": "2020-01-11 21:42:33",
"post_content": "",
"post_title": "Games",
"post_excerpt": "",
"post_status": "publish",
"comment_status": "closed",
"ping_status": "closed",
"post_password": "",
"post_name": "games",
"to_ping": "",
"pinged": "",
"post_modified": "2020-01-15 21:10:20",
"post_modified_gmt": "2020-01-15 21:10:20",
"post_content_filtered": "",
"post_parent": 0,
"guid": "http://localhost/?p=319",
"menu_order": 1,
"post_type": "nav_menu_item",
"post_mime_type": "",
"comment_count": "0",
"filter": "raw",
"db_id": 319,
"menu_item_parent": "0",
"object_id": "319",
"object": "custom",
"type": "custom",
"type_label": "Custom Link",
"title": "Games",
"url": "#",
"target": "",
"attr_title": "",
"description": "",
"classes": [],
"xfn": "",
"logo": {},
"child_items": [
{
"ID": 321,
"post_author": "1",
"post_date": "2020-01-11 21:42:33",
"post_date_gmt": "2020-01-11 21:42:33",
"post_content": "",
"post_title": "Dota 2",
"post_excerpt": "",
"post_status": "publish",
"comment_status": "closed",
"ping_status": "closed",
"post_password": "",
"post_name": "dota-2",
"to_ping": "",
"pinged": "",
"post_modified": "2020-01-15 21:10:20",
"post_modified_gmt": "2020-01-15 21:10:20",
"post_content_filtered": "",
"post_parent": 0,
"guid": "http://localhost/?p=321",
"menu_order": 2,
"post_type": "nav_menu_item",
"post_mime_type": "",
"comment_count": "0",
"filter": "raw",
"db_id": 321,
"menu_item_parent": "319",
"object_id": "301",
"object": "games",
"type": "post_type",
"type_label": "Game",
"url": "http://localhost/games/dota-2/",
"title": "Dota 2",
"target": "",
"attr_title": "",
"description": "",
"classes": [
""
],
"xfn": "",
"logo": {},
"slug": "dota-2"
},
{
"ID": 322,
"post_author": "1",
"post_date": "2020-01-11 21:42:33",
"post_date_gmt": "2020-01-11 21:42:33",
"post_content": "",
"post_title": "Overwatch",
"post_excerpt": "",
"post_status": "publish",
"comment_status": "closed",
"ping_status": "closed",
"post_password": "",
"post_name": "overwatch",
"to_ping": "",
"pinged": "",
"post_modified": "2020-01-15 21:10:20",
"post_modified_gmt": "2020-01-15 21:10:20",
"post_content_filtered": "",
"post_parent": 0,
"guid": "http://localhost/?p=322",
"menu_order": 3,
"post_type": "nav_menu_item",
"post_mime_type": "",
"comment_count": "0",
"filter": "raw",
"db_id": 322,
"menu_item_parent": "319",
"object_id": "264",
"object": "games",
"type": "post_type",
"type_label": "Game",
"url": "http://localhost/games/overwatch/",
"title": "Overwatch",
"target": "",
"attr_title": "",
"description": "",
"classes": [
""
],
"xfn": "",
"logo": {},
"slug": "overwatch"
},
{},
{},
{}
]
},
{
"ID": 320,
"post_author": "1",
"post_date": "2020-01-11 21:42:33",
"post_date_gmt": "2020-01-11 21:42:33",
"post_content": "",
"post_title": "Gambling",
"post_excerpt": "",
"post_status": "publish",
"comment_status": "closed",
"ping_status": "closed",
"post_password": "",
"post_name": "gambling",
"to_ping": "",
"pinged": "",
"post_modified": "2020-01-15 21:10:20",
"post_modified_gmt": "2020-01-15 21:10:20",
"post_content_filtered": "",
"post_parent": 0,
"guid": "http://localhost/?p=320",
"menu_order": 7,
"post_type": "nav_menu_item",
"post_mime_type": "",
"comment_count": "0",
"filter": "raw",
"db_id": 320,
"menu_item_parent": "0",
"object_id": "320",
"object": "custom",
"type": "custom",
"type_label": "Custom Link",
"title": "Gambling",
"url": "#",
"target": "",
"attr_title": "",
"description": "",
"classes": [
""
],
"xfn": "",
"logo": {},
"child_items": [
{
"ID": 336,
"post_author": "1",
"post_date": "2020-01-12 00:46:53",
"post_date_gmt": "2020-01-12 00:46:53",
"post_content": "",
"post_title": "CSGO Gambling",
"post_excerpt": "",
"post_status": "publish",
"comment_status": "closed",
"ping_status": "closed",
"post_password": "",
"post_name": "csgo-gambling",
"to_ping": "",
"pinged": "",
"post_modified": "2020-01-15 21:10:20",
"post_modified_gmt": "2020-01-15 21:10:20",
"post_content_filtered": "",
"post_parent": 0,
"guid": "http://localhost/?p=336",
"menu_order": 8,
"post_type": "nav_menu_item",
"post_mime_type": "",
"comment_count": "0",
"filter": "raw",
"db_id": 336,
"menu_item_parent": "320",
"object_id": "336",
"object": "custom",
"type": "custom",
"type_label": "Custom Link",
"title": "CSGO Gambling",
"url": "/csgo/gambling",
"target": "",
"attr_title": "",
"description": "",
"classes": [
""
],
"xfn": "",
"logo": {}
}
]
},
{},
{},
{}
]
}

我对开发还不熟悉,现在已经坚持了一个多星期。不知道在哪里寻找答案。在这里或谷歌上什么都没有找到。您能否指出我做错了什么或解决方法。

谢谢!

wordpress vue.js events navigation nuxt
1个回答
0
投票

在您的代码中,所有子代都使用相同的变量来表示是否应该显示它们。结果,如果此变量为true,则将显示所有子项;如果为false,则将全部隐藏。

您需要跟踪要显示的菜单项。这是一个如何实现此目的的示例:

new Vue({
  el: "#app",
  data: {
    menu: [{
        title: "Main one",
        children: ['child 1', 'child 2', 'child 3']
      },
      {
        title: "Main two",
        children: ['child 4', 'child 5', 'child 6']
      },
      {
        title: "Main three",
        children: ['child 7']
      },
      {
        title: "Main four",
        children: ['child 8', 'child 9']
      }
    ],
    openMenu: null
  },
  methods: {
    showChildren(i) {
      if (this.openMenu === i) this.openMenu = null
      else this.openMenu = i
    }
  }
})
li {
  margin: 8px;
  padding: 8px;
  background: pink;
  cursor: pointer;
}
<div id="app">
  <h2>menu:</h2>
  <ul>
    <li v-for="(nav, i) in menu" @click="showChildren(i)">
      {{nav.title}}
      <ul v-show="openMenu === i" v-for="child in nav.children">
        <li>{{ child }}</li>
      </ul>
    </li>
  </ul>
</div>

<script src="https://cdn.jsdelivr.net/npm/vue"></script>

基本上,这仅在openMenu与数组中的父项索引相同时才显示子项。

[单击父级时,它将其索引发送到一个函数,该函数检查其是否已打开(openMenu等于父级索引),如果是,则将其更改为null以隐藏子级。否则它将openMenu设置为父索引,从而使openMenu有效。

© www.soinside.com 2019 - 2024. All rights reserved.