如何将 FQL 结果转换为记录列表?

发布于 2025-01-07 17:47:38 字数 170 浏览 1 评论 0原文

我想将我的 FQL 查询结果转换为记录列表,如何像这样转换我的查询。

“从流中选择评论,其中 post_id = 'Post_Id'”

我已转换为 foreach 循环,但它仍然不会得到所需的结果,所以我的问题是我想要帖子的评论列表。?

I want to Convert my FQL Query result into the List of Records how I can Convert this my Query like this.

"SELECT comments FROM stream WHERE post_id = 'Post_Id' "

I have converted into foreach loop but it will still not get desired result so my question is I want to list of comments of Post.?

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

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

发布评论

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

评论(1

温柔少女心 2025-01-14 17:47:38

使用 http://developers.facebook.com/docs/reference/javascript/FB .api/

FB.api({
          method: 'fql.query',
          query: 'SELECT comments FROM stream WHERE post_id=\'' + POST_ID + '\''
       }, function(response) {
          alert(response.length);            
          if(response.length!=1) return; // bail out, no stream item found
          var comment_list = response[0].commment_list;
          for(var i=0; i<response[0].count; i++) {
             console.dir(comment_list[i]);
             alert('from: ' + comment_list[i].fromid + ' text: ' +  comment_list[i].text);
          }
       }
);

您可以在 http://developers.facebook.com 亲自尝试一下/工具/控制台/。只需单击示例并选择“everyone-data”并将查询更改为您的 SELECT,然后使用代码即可。

Use http://developers.facebook.com/docs/reference/javascript/FB.api/

FB.api({
          method: 'fql.query',
          query: 'SELECT comments FROM stream WHERE post_id=\'' + POST_ID + '\''
       }, function(response) {
          alert(response.length);            
          if(response.length!=1) return; // bail out, no stream item found
          var comment_list = response[0].commment_list;
          for(var i=0; i<response[0].count; i++) {
             console.dir(comment_list[i]);
             alert('from: ' + comment_list[i].fromid + ' text: ' +  comment_list[i].text);
          }
       }
);

You can try it out for yourself at http://developers.facebook.com/tools/console/. Just click on Examples and select "everyone-data" and change the query to be your SELECT, and then play with the code.

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