zoukankan      html  css  js  c++  java
  • 实现数据懒加载

    $(document).ready(function () {
            var current = 1;
            var over = true;
            function load() {
                if (!over) {
                    return;
                }
                over = false;
                $(".loading").show();
                $.ajax({
                    url: "/CustomerOrders/Orders",
                    contentType: "application/json; charset=utf-8",
                    data: "{current:'" + current + "',cid:'"+@ViewBag.cid+"'}",
                    type: "POST",
                    datetype: "json",
                    success: function (data) {
                        var EncodeText = doT.template($("#encodetmpl").text());
                        var json = JSON.parse(data);
                        $("#text").append(EncodeText(json.Data));
                        if (json.Err != 0 || json.Data == null || json.Data.length < 20) {
                            $(".noloading").show();
                        }
                        $(".loading").hide();

                        //$(".dtime").each(function () {
                        //    var dtime = $(this).text();
                        //    trand_time = new Date(parseInt(dtime.replace("/", "").replace("Date", "").replace("(", "").replace(")", "").replace("/", ""))).toLocaleString();
                        //    $(this).text(trand_time);
                        //})                    
                    },
                    complete: function (R) {
                        var jsons = JSON.parse(R.responseText);
                        //console.log(jsons);
                        over = true;

                    }

                })
            }
            load();
            $(document).scroll(function () {
                if ($(document).scrollTop() >= $(document).height() - $(window).height()) {                
                    current++;
                    load();
                }
            })

    });

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using WXCustomerCard.Code;
    using Newtonsoft.Json;
    using WXCustomerCard.Models;
    using WXCustomerCard.Common;
    using WXCustomerCard.BLL;

    namespace WXCustomerCard.Controllers
    {

    public JsonResult Orders(int current,string cid ) {
                string json = "";
                string url = string.Format("http://www.baidu.com?cid={0}&pi={1}", cid, current);
                HttpQuery.Get(url, null, msg => {
                    json = msg;
                });
                if (json != "") {
                    return Json(json);
                }
                return Json("");
            }

    }

  • 相关阅读:
    python重载四则运算符及输出格式设置
    hdu 1069 Monkey and Banana
    python特殊函数 __len__(self):
    selective_search_rcnn.m中代码
    用list去初始化numpy的array数组 numpy的array和python中自带的list之间相互转化
    把字符串转化为整数
    这就是那个feature map256 256向量
    对faster rcnn代码讲解的很好的一个
    input_shape { dim: 1 dim: 3 dim: 224 dim: 224 }
    faster rcnn的改进方向
  • 原文地址:https://www.cnblogs.com/xielideboke/p/7283651.html
Copyright © 2011-2022 走看看