问题标签 [parentid]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
3996 浏览

php - PHP按ID和父ID排序数组

我搜索了很多这个问题:

我有一个数组:

我怎样才能对其进行排序:

  • 它按 ID 排序if parent == 0,但如果它有孩子,他们应该紧跟在他们的父母之后。如果那个孩子有孩子,他们也应该在其父母之后。

  • 考虑项目where parent = 00 级,这个 id 的每个孩子都有1 级等。

  • 现在:If level = 0它应该在标题前添加“-TITLE”。如果级别为 2 - "--TITLE",如果级别为 5 - "-----TITLE"

我有大约 300 条记录,最高级别约为 4。我不需要级别 < 5 的排序脚本,但也需要级别 100。

0 投票
1 回答
3500 浏览

mysql - 分层 MariaDB/MySQL 递归查询(仅限父级)

我有下表,想在 MariaDB/mySQL 中编写一个适当的 SQL 查询来返回下面的结果。

到目前为止,我正在尝试使用 CASE WHEN,我很确定这太低效了,而不是解决问题的方法如下:

cDir 是子目录,pDir 是父目录:

所以最后我想做一个CONCAT。

有什么帮助吗?谢谢。

0 投票
1 回答
481 浏览

wordpress - Woocommerce API - 拉入产品,parent_id 不发布

我有一个 woocommerce 站点设置,它使用 woocommerce REST API 从外部系统提取产品。

除了没有设置 parent_id 之外,一切都很好。

示例数据:

{"product": {"title":"Example Shoe","type":"simple","status":"publish","re​​gular_price":"84.00","description":"","short_description": "Trainers","categories":["Mens Trainers"],"catalog_visibility":"visible","attributes":[{"name":"Color","position":1,"visible":true,"变化":false,"options":["BLACK"]}],"images":[{"src":"","title":null,"alt":"","position":0}] ,"parent_id":5254}}

我对为什么有些困惑,因为它只是一个整数发布,我看不出为什么它不起作用。

任何帮助表示赞赏,谢谢。

0 投票
0 回答
32 浏览

php - 在选择标签中生成正确的数据

结构:

是树。

所以,这就是我在 PHP 中想要的:我有 id(它可以是函数参数),例如 5,我想生成选择标签,(在这个例子中是 3 级)所以我想生成这样的东西: https:// jsfiddle.net/Lh8y2mzh/

test6并且test7不在选择中,这就是我想要的。我认为它应该递归地工作。有什么帮助吗?怎么实现这个功能?

0 投票
1 回答
97 浏览

ios - 如何在 quickblox iOS 中使用 ParentId 检索子对象

我想使用来自 QuickBlox API 的 Parentid 检索所有子对象。我该怎么做。谁能建议在 ios 平台上这样做的正确方法。

0 投票
1 回答
121 浏览

jquery - jquery - 单击不同的图像返回相同的ID

我已经为此苦苦挣扎了一段时间。

在我的页面上,我有 17 个图像和 17 个隐藏块。每个图像都应该显示一个特定的块,就在 css 的正下方。

这是要单击的图像的 HTML 和我一直在尝试的 jquery。

无论我单击哪个图像,它总是保存相同的 ID。

该站点位于 Drupal 上,有很多,我想我无法正确访问部分 ID。最终我想要做的是将 ID 保存在一个变量中,然后浏览我拥有的 id 列表并显示适当的块。我说得有道理吗?

非常感谢帮助,因为我对 jquery 没有信心

0 投票
1 回答
191 浏览

c# - 计算列表中父实体的子对象之和

我的列表结构如下:

我希望我的列表返回如下:

0 投票
3 回答
683 浏览

jquery - Wordpress:从 jquery 的 wp_query 帖子中获取 ID

我有一个代码:

我想在 JQuery 中使用它来实现点击功能,比如:

我应该如何进行?

0 投票
1 回答
39 浏览

mysql - Mysql query -> get all data using parentID

I'm new to StackOverflow, first time posting here and I wonder if somebody can help me with a mysql query.

I have this database:

Basically I'm creating a review system, from_user_id is writing a review to user_id and that will have parent_id = 0 but when User_id is replying to the review, it will have the same (user_id and from_user_id ) but parent_id == id of the review that is replaying.

How can I get a query that will show a result in this order:

Selecting all reviews from a specific user in sorted by created_at ( didn't included in my example ) but everytime a review has a parent_id to show it in the next row and after that to move to the next review row

0 投票
1 回答
50 浏览

woocommerce - 使用变量在产品中插入帖子元

我声明我不是专家!我的函数根据价格的存在来修改产品的可见性。它适用于简单的产品,但不适用于具有变量的产品。更准确地说,变量的可见性在变量产品中发生了变化,而不是父产品。

我的问题是:如果有变量,我如何在父产品上设置可见性过滤器?这是我当前的代码: