Facebook 点赞按钮每 1,000 个“点赞”就会更新一次值。它可以在每次点赞时更新吗?

发布于 2024-12-10 17:48:56 字数 371 浏览 1 评论 0原文

我想您已经意识到,当您在网站上时,单击“喜欢”按钮(带有计数器),它通常会像第一个那样逐个更新。直到达到 1000 个“赞”,然后开始每 1000 个“赞”更新一次。

所以你可以这样:

0 喜欢

1 喜欢

2 喜欢

..

..

100 喜欢

..

..

999 喜欢

1000 喜欢(然后它不会更新 onclick 直到)

2000 喜欢(然后它不会更新 onclick 直到)

3000 喜欢(然后它不会更新onclick 直到)

...

有没有办法在每次点击时更新值?

I guess you realised that, when on a website, you click on the 'like' button -with counter- it normally updates one like by one like in the first ones. Until it reaches 1000 'likes', then it starts updating every 1000 'likes'.

So you could se:

0 likes

1 like

2 likes

..

..

100 likes

..

..

999 likes

1000 likes (then it's not updated onclick until)

2000 likes (then it's not updated onclick until)

3000 likes (then it's not updated onclick until)

...

Is there a way to update the value on every click?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的他你的她 2024-12-17 17:48:56

您可以自己查询确切的“喜欢”计数并创建自定义计数器。

PHP 中的示例

$url = 'http://example.com';
$facebook_data = json_decode(file_get_contents("http://api.facebook.com/method/fql.query?query=select%20total_count,commentsbox_count%20from%20link_stat%20where%20url='{$url}'&format=json"));
echo $facebook_data[0]->total_count;

您可以在 http://askdavid.com 上查看此示例

You can query the exact 'like' count yourself and create a custom counter.

example in PHP

$url = 'http://example.com';
$facebook_data = json_decode(file_get_contents("http://api.facebook.com/method/fql.query?query=select%20total_count,commentsbox_count%20from%20link_stat%20where%20url='{$url}'&format=json"));
echo $facebook_data[0]->total_count;

You can see a working example of this on http://askdavid.com

美羊羊 2024-12-17 17:48:56

您可以将布局样式设置为标准而不是框数。但框计数的工作方式是显示一个四舍五入的数字,并且当前不可配置。您可以在他们的错误跟踪工具上记录功能请求。

You could set layout style to standard instead of the box count. But the way box count works is that it displays a rounded number and that isn't currently configurable. You could log a feature request on their bug tracker tool.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文