2

我有两个查询发送到数据库带回帖子(op_ideas 16 cols),然后是另一个持有每个帖子的投票(op_idea_vote cols 4)与匹配的idea_id

数据示例:

查询:op_ideas:

[{"idea_id":"2211","author_id":"100000", "date":"2012-09-06 10:02:28","idea_title":"另一个测试","4" 等等

查询:op_idea_votes:

idea_id = 2211,同意=3,不同意=1,弃权=0

下面的代码应该查看 op_ideas,然后循环遍历 op_ideas_vote,直到在“idea_id”下找到匹配项。然后它转到 op_ideas 下的下一条记录,并再次使用该 idea_id 在 op_idea_vote 列表中搜索它,找到匹配项,并将其添加到数组中。

这仅适用于第一条记录,不适用于其他三个。我正在测试,所以我在每行中有 3 行匹配 idea_id 与 op_idea_vote 中的不同结果。

$votes = mysql_query($commentVotes);

$result = mysql_query($gl_query);

while ($gce_result = mysql_fetch_array($result)) {
    $voteid = $gce_result['idea_id'];

    while($allvotes= mysql_fetch_array($votes)) {
        if($voteid = $allvotes['idea_id']) 
        {
        //echo $voteid . " main idea and the votes: " . $allvotes;
            $gce_result["agree"] = $allvotes['agree'];
            $gce_result["disagree"] = $allvotes['disagree'];
            $gce_result["abstain"] = $allvotes['obstain'];
        } 
        else 
        {
            $gce_result["agree"] = 0;
            $gce_result["disagree"] = 0;
            $gce_result["abstain"] = 0;
        }
        //print_r($gce_result);
    }
    $data_result[] = $gce_result;
}

echo json_encode($data_result);

如果我使用print_f(&gce_result)它在 phpfiddle 中工作正常。但是当我使用上面的代码时,它适用于第一条记录,但它完全缺少第二条记录。它似乎错过了第二个,因为它甚至没有给我 0 0 0 结果。

查询 op_ideas:

$gl_query = "SELECT DISTINCT * FROM heroku_056eb661631f253.op_ideas INNER JOIN op_organs ORDER BY date ASC;";
if (!mysql_query($gl_query)) {
    die('Error: ' . $gl_query . " " . mysql_error());
}
$result = mysql_query($gl_query);

查询 op_idea_vote :

$commentVotes = "SELECT v.idea_id, COUNT(v.agree = 1 or null) as agree, COUNT(v.disagree =   1 or null) as disagree, COUNT(v.obstain = 1 or null) as obstain FROM op_idea_vote v GROUP BY  v.idea_id";
if (!mysql_query($commentVotes)) {
    die('Error: ' . $commentVotes . " " . mysql_error());
}
$votes = mysql_query($commentVotes);
4

3 回答 3

1

您只能扫描一次资源。所以内部 while 将只运行一次。

于 2012-10-14T10:29:51.370 回答
0

您的问题是尝试多次扫描 $votes 结果。

您应该首先存储该查询的结果。

例如。

while ($vote = mysql_fetch_array($votes)) {
    $allvotes['idea_id'] = $vote;
}

while ($gce_result = mysql_fetch_array($result)) {
    $voteid = $gce_result['idea_id'];
    if (array_key_exists[$voteid, $allvotes]) {
       //assign results
    } else {
       //default
    }
}

另一种选择是使用连接进行查询,因此您可以在一个查询中完成所有操作。然后只需循环该结果。

于 2012-10-14T10:20:26.380 回答
0

在 while 循环中使用==而不是=检查if&的条件while ,您必须分配 $allvotes 的值,但您从未分配过,

while ($gce_result == mysql_fetch_array($result)) {
    $voteid = $gce_result['idea_id'];

    while($allvotes== mysql_fetch_array($votes)) {
        if($voteid == $allvotes['idea_id']) 
        {
        //echo $voteid . " main idea and the votes: " . $allvotes;
            $gce_result["agree"] = $allvotes['agree'];
            $gce_result["disagree"] = $allvotes['disagree'];
            $gce_result["abstain"] = $allvotes['obstain'];
        } 
        else 
        {
            $gce_result["agree"] = 0;
            $gce_result["disagree"] = 0;
            $gce_result["abstain"] = 0;
        }
        $data_result[] = $gce_result;
    }

}
于 2012-10-14T10:03:57.660 回答