dongmeng2509 2012-12-14 12:19
浏览 75
已采纳

使用codeigniter,ajax如何从数组中获取下一条记录

I have an array

http://www.postano.com/api/posts.php?ak=XXXX&ts=XXXXX&sig=XXXXX&postano=12345&start=0&count=20

I will be fetch first 20 records initially. Here is the class

class social extends CI_Controller{
function data()
{
$start = $k;

$resultjson = $this->curl->simple_get("http://www.postano.com/api/posts.php?ak=XXXXX&ts=XXXXX&sig=XXXXX&postano=12345&start=$k&count=20");
$resultant_data = json_decode($resultjson,true);
foreach ($resultant_data as $key => $value)
     {
     //print_r($value);
     $this->load->view('feeds',$value);
     }
 }

}

Here feeds is my view.

How can i fetch next 20 records say start or $k = 20 so that I can display the results from 0-20 then 21-40 and so on...

I am trying to implement an autoload or loadmore functionality. I am not using model(database) the only source is json response

  • 写回答

2条回答 默认 最新

  • dongluan5740 2012-12-14 13:48
    关注

    Since you mentioned over chat that you want to use AJAX, on page load have the first request you wanted. Load up your 20 results.

    When you want more results, send an AJAX request and from the script that got requested curl request more products from a specified starting point and limit like Havelock mentioned, something along the lines of

    http://www.postano.com/api/posts.php?ak=XXXX&ts=XXXXX&sig=XXXXX&postano=12345&s‌​tart=21&count=20
    

    Then return the results you got form your ajax request and append it to the page if you want to keep the first 20 results that you had from page load, otherwise replace it.

    Good luck!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥15 键盘指令混乱情况下的启动盘系统重装
  • ¥40 复杂的限制性的商函数处理