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

Wordpress WP API V2的Nuxt/Vue导航菜单问题,wordpress,vue.js,events,navigation,nuxt.js,Wordpress,Vue.js,Events,Navigation,Nuxt.js,我正在用Nuxt和无头wordpress建立一个网站。所有数据都来自WordPressAPI(wp json) 我对导航菜单、父/子菜单项有问题 单击父元素时,会立即触发每个包含子元素的菜单项。 我只需要它来触发我点击的那个 以下是我到目前为止的情况: HTML: <nav> <div class=""> <!-- Triggers burger menu --> <ul :class="isOpen ? 'block'

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

我对导航菜单、父/子菜单项有问题

单击父元素时,会立即触发每个包含子元素的菜单项。 我只需要它来触发我点击的那个

以下是我到目前为止的情况:

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>
我是新来的开发人员,现在已经在这上面呆了一个多星期了。 不知道去哪里寻找答案。在这里或谷歌上找不到任何东西。 你能告诉我我做错了什么或者解决方法吗


谢谢

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

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

newvue({
el:“应用程序”,
数据:{
菜单:[{
标题:“主要的一个”,
儿童:['儿童1',儿童2',儿童3']
},
{
标题:"主二",,
儿童:[‘儿童4’、‘儿童5’、‘儿童6’]
},
{
标题:"主三",,
儿童:[“儿童7”]
},
{
标题:"主四",,
儿童:[“儿童8”,“儿童9']
}
],
openMenu:空
},
方法:{
表演儿童(一){
如果(this.openMenu==i)this.openMenu=null
否则此.openMenu=i
}
}
})
li{
利润率:8px;
填充:8px;
背景:粉红色;
光标:指针;
}

菜单:
  • {{nav.title}
    • {{child}}

非常感谢Nate!我想了想,但不知道如何实施。现在它有意义了。一切都很好!乐意帮忙:-)
{
"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": {}
}
]
},
{},
{},
{}
]
}