亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MVC中實現加載更多

發布時間:2020-06-07 17:25:39 來源:網絡 閱讀:292 作者:dyllove98 欄目:移動開發

需要實現的功能:

  1. 數據太多想初次加載部分數據,在底部加上“加載更多”按鈕

  2. 點擊后加載第二頁數據(從數據庫只取指定頁數據)后接在已有數據后面(類似于android中的下拉加載更多)

  3. 每次加載時顯示“正在加載……”

網上找了一些方法,類似于MvcPager分頁組件,用的是v1.5.0版,但后臺需要將分頁后的對象列表ToPagedList,需要在MvcPager源碼中加入public static PagedList<T> ToPagedList<T>(this IList<T> list, int pageIndex, int pageSize, int? totalCount)方法,控件詳見  MVC中局部視圖的使用 一文。

 

主頁面Index的View中添加局部視圖:

    <div id="goodslist" class="goodslist">
       @{Html.RenderPartial("_ProductListIndex", Model);}    </div>

 

其中的Model是在Index返回Model

MVC中實現加載更多

public ActionResult Index(int pageIndex = 1, int pageSize = 4, string viewName = "_ProductListIndex")
        {            int recordCount = 0;//總記錄數
            ProductDomain _productDomain = new ProductDomain();
            List<Product_Entity> _productlist = _productDomain.GetProduct( pageIndex, out recordCount, 0, pageSize);
            PagedList<Product_Entity> _productPageList = _productlist.ToPagedList(pageIndex, pageSize, recordCount);            if (base.Request.IsAjaxRequest())
            {                return this.PartialView(viewName, _productPageList);
            }            return View(_productPageList);
        }

MVC中實現加載更多

其中Request.IsAjaxRequest()中判斷是否通過分頁頁碼進來的,ToPagedList需要用到改造后的MvcPager組件(見上文)

 

局部視圖_ProductListIndex

MVC中實現加載更多

@using Webdiyer.WebControls.Mvc
@model PagedList<Domain.Shop.Product_Entity><div id="ProductListDiv">
    @if (Model != null && Model.Count > 0)
    {
        
        foreach (var item in Model)
        {        <div class="goodslist_row">
                <div class="goodslist_col01 item">     
                    <div class="item_title">@item.product.title</div>
                    <div class="item_price" >@String.Format("{0:0.00}{1}", item.product.Price,"元")                    </div>
                </div>
        </div>
        }        <div>
            <div >
            </div>
            <div id="nonedata" class="nonedata" >
                正在獲取數據,請稍候...            </div>
            <div >
            </div>
            <div class="foot">
                @Html.AjaxPager(Model, new PagerOptions
                   {
                       Id = "divPage",                       ShowNumericPagerItems = false,
                       ShowPrev = false,
                       ShowFirstLast = false,
                       NextPageText = "查看更多商品>>",
                       ShowDisabledPagerItems = false,
                       AlwaysShowFirstLastPageNumber = false,
                       PageIndexParameterName = "pageIndex",
                       NumericPagerItemCount = 3,
                       CssClass = "moregoods",
                       SeparatorHtml = ""
                   }, new AjaxOptions { UpdateTargetId = "ProductListDiv", LoadingElementId = "nonedata", LoadingElementDuration = 1000, InsertionMode = InsertionMode.InsertAfter })            </div>
        </div>
    }</div>

MVC中實現加載更多

注意幾點:

@Html.AjaxPager需要放在局部視圖中,否則頁碼無法更新,由于是要加載到原數據后面因此設置 InsertionMode = InsertionMode.InsertAfter

其中注意的是ShowPrev = false 否則翻頁后會顯示“上一頁” ,@Html.AjaxPager其它屬性可 下載MvcPager源碼PagerTest.rar 查看

但最重要的是還需要更改jquery.unobtrusive-ajax.js源碼,否則會出現多個 “查看更多”

MVC中實現加載更多

 

  需要更改后的jquery.unobtrusive-ajax.js下載

MVC中實現加載更多

  

   點擊查看更多時效果

MVC中實現加載更多

現在問題來了,似乎達到效果了,但最重要的問題是初次加載 不顯示“正在獲取數據,請稍候...”,因為首次是直接由Model生成,沒有從頁碼進去,無法執行beforeSend函數。

觀察jquery.unobtrusive-ajax源碼,其原理是異步從后臺取數據然后經過模板解析后拼接到指定元素后面。

下面棄用MvcPager組件,自己改裝,利用Get異步獲得數據

js:

MVC中實現加載更多

          var _pageIndex = 1;
            $("#goods").click(function () {
             LoadData(_pageIndex);
            });

            //按傳參加載數據列表
            function LoadData(pageIndex){
                $("#nonedata").show(1000);
                 //默認加載
                var href = "ProductListIndex";
                if(pageIndex !=null && pageIndex !=""){
                  href+="&pageIndex="+pageIndex;
                }
                $.ajax({
                        url:href,
                        type:"GET",
                        success: function (data, status, xhr) {
                          if(data.indexOf('nonedata') !=-1){
                              $("#goods").hide(1000);
                              if(_pageIndex==1){
                                $("#goodslist").append(data);
                              }
                           }else{
                               $("#goodslist").append(data);
                               _pageIndex ++;
                           }
                        },
                        complete: function () {
                           $("#nonedata").hide(1000);
                        }
                });
                
            }        
            
            //加載默認數據   
            LoadData(1);

MVC中實現加載更多

 

$.ajax獲得數據后拼接,前后顯示隱藏加載提示,并初次加載由前臺執行,這樣就可實現自己控制 加載提示了。

Control中要進行頁碼判斷,結合前臺數據,否則會出現頁碼不斷遞增的情況。

MVC中實現加載更多

 public ActionResult ProductListIndex(int pageIndex = 1, int pageSize = 4, string viewName = "_ProductListIndex")
        {            int recordCount = 0;//總記錄數
            ProductDomain _productDomain = new ProductDomain();
            List<Product_Entity> _productlist = _productDomain.GetProduct( pageIndex, out recordCount, 0, pageSize);            int totalPageCount = (int)Math.Ceiling(recordCount / (double)pageSize);            if (pageIndex >totalPageCount )
            {
                //超過數據總數則返回空
                _productlist = new List<Product_Entity>();
            }            return this.PartialView(viewName, _productlist);
        }

MVC中實現加載更多

 

在Index頁只需要指定加載的框架:

MVC中實現加載更多

    <div id="goodslist" class="goodslist">

    </div>
    <div >
    </div>
    <div id="nonedata" class="nonedata">
    正在獲取數據,請稍后……    </div>
    <div >
    </div>
    <div class="foot">
        <a href="javascript:void(0)" class="moregoods" id="goods">查看更多商品>></a>
    </div>

MVC中實現加載更多

 

最后初次加載實現效果

MVC中實現加載更多

總的來說是利用異步獲得數據利用局部視圖裝載數據(不用自己拼字符串)然后加載到指定框架中。


MVC中實現加載更多
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建宁县| 延川县| 油尖旺区| 辽阳市| 高安市| 寿宁县| 大田县| 孟村| 商城县| 肇源县| 凤翔县| 苏州市| 大埔县| 化隆| 资中县| 长阳| 深泽县| 镇赉县| 长岛县| 将乐县| 夹江县| 克东县| 都兰县| 曲周县| 林芝县| 教育| 博罗县| 黔江区| 崇明县| 林芝县| 道孚县| 恩施市| 邓州市| 耿马| 拜城县| 克什克腾旗| 秭归县| 平果县| 科技| 宜州市| 阳高县|