Joomla后端菜单使用mysql按字母顺序重新排序

发布于 2024-10-18 01:26:21 字数 394 浏览 1 评论 0原文

我一直在试图找出一种方法来重新排序我们现有的菜单,以便它按字母顺序排列。这个菜单有大约 500 个项目,并且严格用于 URL 结构,但我们还有另一个将使用 MenuLinks 的显示菜单,我们必须从后端的下拉列表中选择所有这些菜单,而且很难弄清楚。我一直在尝试创建一个 mysql 查询来执行此操作,但没有成功。

沿着这条线

UPDATE jos_menu set ordering = ordering+1 WHERE menutype = 'menu-name' ORDER BY name ASC

,但当然它不起作用。只是好奇是否有人已经弄清楚了这一点。

也许如果我操纵管理员显示下拉菜单(编辑菜单项时)以按字母顺序显示,这对于 0 级项目而不是其子项来说是一种做法。

I've been trying to figure out a way to re-order a menu that we have so it will be alphabetical. This menu has about 500 items and is strictly used for URL structure, but we have another display menu that will be using MenuLinks and we have to choose all of those from a dropdown in the backend and it's extremely hard to figure out. I've been trying to create a mysql query that will do it but have had no avail.

along the lines of

UPDATE jos_menu set ordering = ordering+1 WHERE menutype = 'menu-name' ORDER BY name ASC

but of course it doesn't work. Just curious if anyone has figured this out.

Maybe if i manipulate the admin to display the dropdown menu (when editing a menu item) to display alphabetically, which is kind of does for the Level 0 items but not its children.

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

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

发布评论

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

评论(1

娇俏 2024-10-25 01:26:21

您可以尝试的一种方法是:

  • 使用 PHPMyadmin 复制表结构
  • insert into newtable from oldtable where menutype='menu-name'
  • drop autonumber Primary key
  • set autonumber to 0
  • 按名称对表进行物理排序(
  • 按菜单类型对表进行物理重新排序(ALTER TABLE foo ORDER BY key; )
  • 重新添加自动编号主键
  • 更新新表,设置 ordering=menu_id
  • 重新插入旧表

HTH,Jochen

A way you could try is:

  • copy the table structure with PHPMyadmin
  • insert into newtable from oldtable where menutype='menu-name'
  • drop autonumber primary key
  • set autonumber to 0
  • sort table physically by name (
  • reorder table physically by menu-type (ALTER TABLE foo ORDER BY key; )
  • re-add autonumber primary key
  • update newtable, set ordering=menu_id
  • re-insert into oldtable

HTH, Jochen

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文