我在使用Next UI版本2.2.9.
在Next.js中实现嵌套的插件时遇到问题当我单击插件的顶层按钮时,子级内容短暂出现不到一秒,然后整个插件关闭,使其无法单击。我无法执行任何操作。寻求帮助以解决此问题。谢谢!
`<Dropdown backdrop="blur">
<DropdownTrigger>
<Button variant="light">
Process Team
</Button>
</DropdownTrigger>
<DropdownMenu variant="light" aria-label="Static Actions">
<DropdownItem>
<Dropdown>
<DropdownTrigger>
<Button variant="light">
Member
</Button>
</DropdownTrigger>
<DropdownMenu>
<DropdownItem className="text-black">List All Cases</DropdownItem>
<DropdownItem className="text-black">Reassign Cases</DropdownItem>
</DropdownMenu>
</Dropdown>
</DropdownItem>
</DropdownMenu>
</Dropdown>
1条答案
按热度按时间3wabscal1#
问题:
我在使用Next UI 2.2.9版在Next.js中实现嵌套的JavaScript时遇到了一个问题...
可能原因:
默认情况下,
closeOnSelect
属性是true
,它会导致父对象关闭。解决方案:
使用下拉属性
closeOnSelect
,将值作为false
传递给它。变化
<Dropdown backdrop="blur">
个到
<Dropdown backdrop="blur" closeOnSelect={false}>
个字符串
closeOnSelect={false}
。*当你有更多的水平:
型
您也可以使用
shouldCloseOnInteractOutside
prop来启用当用户单击它之外的任何位置时关闭插件的功能。因为它有助于关闭多级插件。型
此外,按钮宽度不是100%,您可以使用Button Prop
fullWidth
并将其传递给Boolean true以使其成为100%。型
请阅读:
1.**下拉 prop :**https://nextui.org/docs/components/dropdown#dropdown-props (滚动到页面底部)
1.下拉事件shouldCloseOnInteractOutside:https://nextui.org/docs/components/dropdown#dropdown-events
1.**按钮 prop **:https://nextui.org/docs/components/button#button-props