0

我正在尝试在我的网站上对 Tumblr 的 API v1 输出进行分页。我有 jQuery 代码,它在显示内容时工作正常,但是,我需要允许它被拆分和分页以用于组织目的。第一个代码框调用 API 时

<div id="content"><div id=main"><div id ="tumblrFeed"></div><div class="clear"></div></div>

在 html 页面上调用。

当我的内容在浏览器上输出时,我无法对其进行分页。如您所见,我让每个页面显示 5 个帖子,并且我已将变量 tumblrPaginate 声明为从 0 开始。每次用户单击“上一个或下一个”按钮时,我都需要更改该变量。

我已经为此工作了很长一段时间,球场范围是 2 周,但没有成功。非常感谢任何帮助或指导。请记住,我是 Javascript、jQuery 等的初学者。

    var tumblr_api_read = null; // this is important do not remove
    var tumblrPaginate = 0; // **TODO** make loop to increment each for pagination feature
    var tumblrpostCount = 5; // set the post count number, max is 50 for API v1

    $(document).ready(function() {  
            // setup our namespace
            $.tumblr = {};
            // modify these
            $.tumblr.url = 'http://wisdmlab.tumblr.com/api/read/json?callback=?&num=' + tumblrpostCount +'&start=' + tumblrPaginate +''; // set to display 7 posts. off set syntax is start=[postnumtobeginat]
            $.tumblr.numPostsToDisplay = 50;
            $.tumblr.postMaxDescriptionLength = 500; // set to -1 to turn off jquery.expander
            $.tumblr.videoWidth='200'; // youtube default 400
            $.tumblr.videoHeight='163'; // youtube default 325
            // do not modify these unless you are hardcore
            $.tumblr.imagePath = '..//testscripts/tumblr-jquery-master/img/';   
            $.tumblr.postCount = 0;

            reloadTumblr();
  });       

  function reloadTumblr(){      
    $("#tumblrFeed").empty();
    $("#tumblrFeed").append("<div class='body'>loading Tumblr</div>");

    $.ajax({
          url: $.tumblr.url,
          dataType: 'script',
          timeout: 10000,
      success:function(){ 
        $("#tumblrFeed").empty();
        if ((tumblr_api_read == undefined) || (tumblr_api_read == null)) {
            $("#tumblrFeed").append("<div class='title' href='#'>unable to load Tumblr</div>");
            $("#tumblrFeed").append("<div class='body'><a href=\"#\" onclick=\"javascript:reloadTumblr();\">[retry]</a></div>");                
            } else {
                //$("#tumblrFeed").append("<div class='body'><a href=\"#\" style=\"float:center\" onclick=\"javascript:reloadTumblr();\">Refresh News Page</a></div>");
                $.tumblr.postCount = 0;
            $.each(tumblr_api_read.posts.slice(0, 50), function(i,post){
                        if ($.tumblr.postCount >= $.tumblr.numPostsToDisplay) {
                            return;
                        }               
                    parseTumblrJSON(post);
                    $.tumblr.postCount++;
                });

                // Apply Expander
                if ($.tumblr.postMaxDescriptionLength > -1) {
                      $('div.expandable').expander({
                        slicePoint:       $.tumblr.postMaxDescriptionLength,  // default is 100
                        expandText:         'Read more.',
                        userCollapseText: 'Read less.'
                      });                                   
                }
            }
      },
      error:function (xhr, statusTxt, errorTxt){
            $("#tumblrFeed").append("<a class='title' href='#'>Tumblr Parse Error</a>");
            $("#tumblrFeed").append("<div class='body'>" + errorTxt + "<br/>" + xhr.responseText + "</div>");
      }                           
        });     
  }

    function formatDate(d) {
        return d.toString('dddd, MMMM d, yyyy')
    }

    function processResponse() {
    }

    function parseTumblrJSON(post) {
        //alert(post.type);
        var d = Date.parse(post["date-gmt"]);
        var dateFmt = formatDate(d);

    switch(post.type)
    {               
        case "regular":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "</td></table>");                       
            //Place directly before "</td>" <div class='date'>" + dateFmt + "</div>

            $("#tumblrFeed").append("<a class='title' href='" + post.url + "' target='_blank'>" + (post["regular-title"] == null ? 'view tumblr' : post["regular-title"])  + "</a>");
            $("#tumblrFeed").append("<div class='body expandable'>" + post["regular-body"] + "</div>");
            $("#tumblrFeed").append("<div class='date'>Posted on " + dateFmt + "</div>");
            break;
        }
        case "link":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "<a href='" + post.url + "' target='_blank'>" +
                    "<div class='date'>" + dateFmt + "</div></td></table>");                        

            $("#tumblrFeed").append("<a class='title' href='" + post["link-url"] + "' target='_blank'>" + (post["link-text"] == null ? 'view tumblr' : post["link-text"]) + "</a>");
            $("#tumblrFeed").append("<div class='body expandable'>" + post["link-description"] + "</div>");
            break;
        }               
        case "quote":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "<a href='" + post.url + "' target='_blank'>" +
                    "<div class='date'>" + dateFmt + "</div></td></table>");                        

            $("#tumblrFeed").append("<div class='body'>" + 
                "<div class='quote expandable'>" + post["quote-text"] + "</div>" +
                "<div class='quotesrc'>" + post["quote-source"] + "</div>" +
                "</div>");
            break;
        }               
        case "photo":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "<a href='" + post.url + "' target='_blank'>" +
                    "</td></table>");                       
            // valid values are: photo-url-[75, 100, 250, 400, 500, 1280]
            $("#tumblrFeed").append("<div class='body'>" + 
                "<a href='" + post.url + "'>" +
                "<img src='" + post["photo-url-250"] + "'/></a><br/>" + 
                post["photo-caption"] + 
                "</div>", "<div class='date'>Posted on " + dateFmt + "</div>");
            break;
        }
        case "conversation":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "<a href='" + post.url + "' target='_blank'>" +
                    "<div class='date'>" + dateFmt + "</div></td></table>");                        

            var html = '';
            $("#tumblrFeed").append("<a class='title' href='" + post.url + "' target='_blank'>" + (post["conversation-title"] == null ? 'view tumblr' : post["conversation-title"])  + "</a>");

                for(var i = 0; i < post["conversation"].length; i++) {
                    var conv = post["conversation"][i];                     
                    html += "<div class='convlabel'>" + conv.label + "</div>";
                    html += "<div class='convtext expandable'>" + conv.phrase + "</div>";
                }

                /*          
                $(this).find("line").each(function(){
                    html += "<div class='convlabel'>" + $(this).attr("label") + "</div>";
                    html += "<div class='convtext'>" + $(this).text() + "</div>";
                });*/

            $("#tumblrFeed").append("<div class='body'>" + html + "</div>");
            break;
        }
        case "audio":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "<a href='" + post.url + "' target='_blank'>" +
                    "<div class='date'>" + dateFmt + "</div></td></table>");                        

            $("#tumblrFeed").append("<a class='title' href='" + post.url + "' target='_blank'>" + post["audio-caption"] + "</a>");
            $("#tumblrFeed").append("<div class='body'>" + post["audio-player"] + "</div>");
            break;
        }
        case "video":
        {
                $("#tumblrFeed").append(
                    "<table style='width: 100%;'><tr><td width='18px'>" +
                    "<a href='" + post.url + "' target='_blank'>" +
                    "<div class='date'>" + dateFmt + "</div></td></table>");                        

            $("#tumblrFeed").append("<a class='title' href='" + post.url + "' target='_blank'>" + post["video-caption"] + "</a>");
            // resize our video code if possible
            var vdo = post["video-player"];
            var re = new RegExp('width=\"([a-zA-Z0-9]*)\"', 'g');
            vdo = vdo.replace(re, 'width="' + $.tumblr.videoWidth + '"');
            re = new RegExp('height=\"([a-zA-Z0-9]*)\"', 'g');
            vdo = vdo.replace(re, 'height="' + $.tumblr.videoHeight + '"');         
            re = new RegExp('400,320', 'g');
            vdo = vdo.replace(re, $.tumblr.videoWidth + ',' + $.tumblr.videoHeight);
            re = new RegExp('400,250', 'g');
            vdo = vdo.replace(re, $.tumblr.videoWidth + ',' + $.tumblr.videoHeight);
            $("#tumblrFeed").append("<div class='body'>" + vdo + "</div>");
            break;
        }               
        default:
            break;
    }
    $("#tumblrFeed").append("<div class='clear'>&nbsp;</div>");
    }
4

1 回答 1

0

首先,我将控件添加到 html 文档

  <div id='controls'>
    <a href="#" id='next'>next</a>:<a href="#" id='previous'>previous</a>
  </div>

然后 preventDefault 链接,增加 tumblrPaginate,并重新加载 tumbler 流:

    $(document).ready(function() {
         (...)
         $.tumblr.imagePath = '..//testscripts/tumblr-jquery-master/img/';
         $.tumblr.postCount = 0;

         $('#next').on( "click", function (e) {
             e.preventDefault();
             tumblrPaginate += 5;
             reloadTumblr();
         });
         $('#previous').on( "click", function (e) {
             e.preventDefault();
             if(tumblrPaginate>=5){
                  tumblrPaginate -= 5;
                  reloadTumblr();
             }
         });
         reloadTumblr();
    });

最后在 reloadTumblr() 中,您需要更新 $.tumblr.url 以包含新的 tumblrPaginate 值:

  function reloadTumblr(){
     $("#tumblrFeed").empty();
     $("#tumblrFeed").append("<div class='body'>loading Tumblr</div>");
     $.tumblr.url = 'http://wisdmlab.tumblr.com/api/read/json?callback=?&num=' +
                    tumblrpostCount +'&start=' + tumblrPaginate + '';
     (....)
     }

我无法让 jsFiddle 工作,所以我将它上传到我的网站:工作示例仅限 js

于 2013-07-06T07:29:40.267 回答