簡體   English   中英

如何獲取類別、文章和子類別及其文章?

[英]How to fetch categories, articles and subcategories and their articles?

我想輸出類別名稱,每個類別中的子類別名稱,以及每個類別和每個子類別中的文章。

輸出應該在 HTML 中的<ul>和內部<ul>標簽中。

下面是輸出的樣子:

HTML 輸出

我有這 5 個表:

table_article_categories(articlecat_id, parent_id, articlecat_status, ...)
table_article_to_article_categories(articlecat_id, articles_id)
table_articles(articles_id, articles_status, ...)
table_articles_description(articles_id, language_id, articles_heading_title, ...)
table_article_categories_description(articlecat_id, articlecat_name, language_id, ...)

到目前為止,我已經制作了這個 SQL:

  SELECT
        ac.parent_id,
        ac.articlecat_id,
        a.articles_id,
        ad.articles_heading_title AS article_name,
        acd.articlecat_name
  FROM
        table_article_categories AS ac
  LEFT JOIN
        table_article_to_article_categories AS atac
     ON
        atac.articlecat_id = ac.articlecat_id
  LEFT JOIN
        table_articles AS a
     ON
        a.articles_id = atac.articles_id
     AND                
        a.articles_status = 1
  LEFT JOIN
        table_articles_description AS ad
     ON
        ad.articles_id = a.articles_id
     AND
        ad.language_id = 1              
  INNER JOIN
        table_article_categories_description AS acd
     ON
        acd.articlecat_id = ac.articlecat_id
     AND
        acd.language_id = 1
  WHERE
        ac.parent_id = 99 # --- This is the root article-categori-id ---
     AND
        ac.articlecat_status = 1
     AND
        ac.articlecat_id != 77 # --- This is an excluded article-categori-id ---
  ORDER BY
        acd.articlecat_name ASC,
        article_name ASC

當我查看您想要的輸出時,我看到的是一棵樹,葉子可能會或可能不會鏈接到文章。 沒有附加文章的葉子可以被認為是一個類別。 有文章的葉子可以被認為是文章。

有了這個假設,您可以構建您的架構:

Category_Tree  Category      Article
------------   --------      -------
id             id            id
pid            category_id   article_id
article_id     language_id   language_id
category_id    title         title

(當然,這不是第四范式。如果需要,您可以標准化,但現在這將是過早的優化)

現在,應該更容易了解如何解決您的問題:您所要做的就是首先在 php 數組中構建樹; 然后遍歷該數組並單獨查詢每個葉子的詳細信息(或至少查詢鏈接的 href 和文本所需的內容)。

一個簡單的遞歸入門:

<?php
/*
 Category_Tree
 id  pid  name            article_id   category_id   
 1   0    Category 1            ...          ...
 2   1    Article 1
 3   0    Category 2
 4   3    SubCategory 1
 5   4    Article 7
 6   4    Article 8
 7   3    Article 2
 8   3    Article 3
 9   0    Category 3
 10  9    Article 4
 11  9    Article 5
 12  0    Article 6
*/
function getRecord($pid) : array
{
  // database access is left to the reader

  // $db->run('SELECT * FROM CATEGORY_TREE WHERE PID=?',[$pid]);
  // $rows = [];
  // while($row = $db->getRow()) {
  //     $rows[] = $row;
  // }

  return $rows;
}

function makeTree($pid) : array
{
    static $idList = [];
    static $indent = 0;
    $rows = getRecord($pid);
    foreach ($rows as $row) {
        $idList[] = [
            'id' => $row->id, 
            'indent' => $indent,
            'articleId' => $row->articleId,
            'categoryId' => $row->categoryId,
        ];
        $indent++;
        makeTree($row->id);
        $indent--;
    }

    return $idList;
}

$idList = makeTree(0);

*警告:這不會直接轉換為無序列表。 我不喜歡混合 html 和邏輯,但在這種情況下,您需要在遞歸中構建一個字符串。 這是您可以提出或研究的更集中的問題。

現在,您遍歷$idList並查找所需的信息以填寫您想要的標題

偽代碼(數據庫檢索再次留給讀者):

// $languageId is already assigned as you see fit

// add title to $idList
foreach($idList as $index => $row) {
    if($row->articleId ?? FALSE) {
      $db->run('SELECT TITLE FROM ARTICLE WHERE ARTICLE_ID=? AND LANGUAGE_ID=?', [$row->articleId, $languageID]);
    } else {
      $db->run('SELECT TITLE FROM CATEGORY WHERE CATEGORY_ID=? AND LANGUAGE_ID=?', [$row->categoryId, $languageId]);
    }

    $row->title = $db->get('title');
    $idList[$index] = $row;  
}

然后,當您輸出 html 時,您只需再次遍歷$idList並根據需要輸入值。

顯然,這不是一個剪切和粘貼的答案; 有太多的編碼要做。 但希望這會為您指明一個可行的方向。

我建議不要在單個查詢中執行此操作,而是建議使用循環處理單獨的多個查詢的解決方案。

對於您的情況,只需要 3 個單獨的查詢,因為您有 3 層(Cat/Subcat/Article)。 另一方面,由於層的數量已經定義(並且是有限的),所以這次不需要使用遞歸(如果有無限(或未知)的層次結構,我們可能需要遞歸)。

請將數據庫架構更改為適當且明確定義的架構(如下):

category (catid, name)
subcategory (subcatid, catid, name)
article (articleid, catid, subcatid, name)

catid is linking to category 並且subcatid is linking to subcategory如果適用

所以數據將是(參考你帖子中的圖片)

category (catid, name)

1 Category1
2 Category2
3 Category3

subcategory (subcatid, catid, name)

1 2 Subcategory1

article (articleid, catid, subcatid, name)

1 0 0 Article6
2 1 0 Article1
3 2 1 Article7
4 2 1 Article8
5 2 0 Article2
6 2 0 Article3
7 3 0 Article4
8 3 0 Article5

我認為上述模式的優勢和清晰度是顯而易見的,因此我認為不需要進一步解釋。 當然,您可以向表中添加更多數據字段,但主要結構如上。

現在,請使用 PHP 生成以下 HTML:

對於第一個 ul, li(只運行一次)

(a) 遍歷類別並顯示名稱

然后

(b) 循環具有 (catid=0 or catid is null) 和 (subcatid=0 or subcatid is null) 的文章顯示記錄,然后顯示名稱

第二個 ul,li

對於上述 (a) 中的每條記錄:

(c) 遍歷子類別,其中 catid=category.catid 並顯示子類別名稱

然后

(d) 遍歷文章,顯示具有 catid=category.catid 和 (subcatid=0 or subcatid is null) 的記錄,然后顯示名稱

第三個 ul,li

對於上述 (c) 中的每條記錄:

(e) 遍歷文章,顯示具有 catid=subcategory.catid 和 subcatid=subcategory.subcatid 的記錄,然后顯示名稱

為了演示,我將把“2nd ul, li”作為一個名為branch2()的函數; 和“3rd ul, li”作為稱為branch3()的函數,然后相應地調用它們。

所以,代碼將是:

<?php

$servername = "localhost";
$username = "xxxxxxx";
$password = "xxxxxxxxxx";
$dbname = "xxxxxx";

// Create connection

$conn = new mysqli($servername, $username, $password, $dbname);


$sql1="(
SELECT name, catid AS id1, '1' as subdata
FROM category
ORDER BY id1
)
UNION (

SELECT name, articleid AS id1, '0' as subdata
FROM article
WHERE catid =0
AND subcatid =0
ORDER BY id1
)";

$result = $conn -> query($sql1);

$index=0;

$count=mysqli_num_rows($result);

echo "<ul>";
  while ($index <$count) {
  $row = $result -> fetch_assoc() ;
  echo "<li>". $row["name"];

if ($row["subdata"]=='1'){  
    branch2($row["id1"], $conn); 
}
  
  $index++;
  }
echo "</ul>";

$result -> free_result();


function branch2($var1, $conn)
{

$sql2="(
SELECT name, catid AS id1, subcatid as id2, 1 as subdata
FROM subcategory where catid=". $var1 . " ORDER BY id1 )
UNION (
SELECT name, articleid AS id1, 0 as id2 , 0 as subdata
FROM article
WHERE catid =" . $var1 . " AND subcatid =0 ORDER BY id1 )";


$result2 = $conn -> query($sql2);

$index2=0;

$count2=mysqli_num_rows($result2);

echo "<ul>";
  while ($index2 <$count2) {
  $row2 = $result2 -> fetch_assoc() ;
  echo "<li>". $row2["name"];

if ($row2["subdata"]=='1') {    
    branch3($row2["id1"], $row2["id2"], $conn); 
}  
   $index2++;
  }
echo "</ul>";
$result2 -> free_result();
}


function branch3($var1, $var2, $conn)
{

$sql3="(
SELECT name, articleid AS id1, 0 as id2 , 0 as subdata
FROM article
WHERE catid =" . $var1 . " and subcatid=". $var2 . " ORDER BY id1 )";

$result3 = $conn -> query($sql3);

$index3=0;

$count3=mysqli_num_rows($result3);

echo "<ul>";
  while ($index3 <$count3) {
  $row3 = $result3 -> fetch_assoc() ;
  echo "<li>". $row3["name"];

  $index3++;
  }
echo "</ul>";

$result3 -> free_result();

}

?>

完整的工作示例可以在這里看到:

http://www.createchhk.com/SO/testso10Nov2021.php

在此處輸入圖片說明

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM