调用未定义的方法 - Thumbsup
while($post = mysql_fetch_array($display)){
echo '<div class="banat">';
echo $post['content'];
$items = ThumbsUp::item($post['userID'])->orderby('votes_total')->get();
echo '</div>';
}
我正在尝试显示投票最高的报价按照此处的指示,但它一直说:
Fatal error: Call to undefined method ThumbsUp_Item::orderby()
while($post = mysql_fetch_array($display)){
echo '<div class="banat">';
echo $post['content'];
$items = ThumbsUp::item($post['userID'])->orderby('votes_total')->get();
echo '</div>';
}
I'm trying to display the top voted quotes like instructed here but it keeps saying:
Fatal error: Call to undefined method ThumbsUp_Item::orderby()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您在链接的文档页面中看到的,函数
orderby
应用于items()
而不是item()
。我认为这就是问题所在。As you can see in the doc page you linked, the function
orderby
is applied toitems()
and notitem()
. I think this is the problem.