我正在创建 twitter #hashtag 搜索的 Web 应用程序,我想在其中集成以下代码。
https://github.com/henrahmagix/tweetCount/blob/master/total_tweets.html
(注意:只需复制/粘贴以上代码即可获得演示)
上面的链接包含用于获取任何搜索的推文数量的代码(对标签趋势很有用)。
以下是我的代码:
<table width="100%">
<tr>
<th>#Hashtag</th>
<th>Description</th>
<th>Tags</th>
<th>Participants</th>
</tr>
<?php
$i = 1;
$j = 1;
while ($row = mysqli_fetch_array($result)):
?>
<tr>
<td class="hashtd"><a href="#"><?php echo "#" . $row['hashtag']; ?></a></td>
<td class="hashtd"><?php echo $row['description']; ?></td>
<td class="hashtd"><a href="<?php echo $row['id']; ?>" role="button" data-toggle="modal" class="show_modal_box">Show</a></td>
<td class="hashtd">
<script type="text/javascript">
submitTerms("<?php echo $row['hashtag']; ?>","1","0");
</script>
<div id="totalTweets">Total tweets: <span></span></div>
<div id="loading">Loading!</div>
<div id="pagesDone">Pages done: <span></span></div>
</td>
</tr>
<?php
$i++;
$j++;
endwhile;
?>
</table>
在这里,我为此使用了 tweetCount 脚本:
<td class="hashtd">
<script type="text/javascript">
submitTerms("<?php echo $row['hashtag']; ?>","1","0");
</script>
<div id="totalTweets">Total tweets: <span></span></div>
<div id="loading">Loading!</div>
<div id="pagesDone">Pages done: <span></span></div>
</td>
在 tweetCount 脚本中,他们使用表单并在提交表单并从中获取 tweetcount 结果后搜索一个关键字http://search.twitter.com/search.json?q=
但是我想在页面加载时调用它,这就是为什么我调用该submitTerms()
函数来获取实时推文计数。因为我在 while 循环中调用脚本,所以我不能将“id”用于 totalTweet、loading 和 pagesDone div 标签。我尝试在那里添加“类”,但最终导致所有不正确的主题标签的推文计数相同。
希望你能得到这个。需要帮忙。