联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
会员show.html页面,调用data_news.html,瀑布流无法加载下一页
类型:迅睿CMS 更新时间:2021-11-23 10:06:12

会员show.html页面,调用data_news.html,瀑布流无法加载下一页,求解

以下是data_news.html默认模板参数

{if $myuid}

{module module=works uid=$myuid order=updatetime page=1 pagesize=10 urlrule=test}

......

{/module}

{/if}


回帖
  • 迅睿框架技术-张洪
    #1楼    迅睿框架技术-张洪
    2021-11-23 08:53:00
    小米手机 0
    需要把$myuid通过api地址传输过去
  • likeren
    #2楼    likeren
    2021-11-23 09:05:28
    Chrome 0
    迅睿框架技术-张洪 不懂啊,具体代码怎么写呢
  • K大帅
    #3楼    K大帅
    2021-11-23 09:19:55
    Chrome 0
    https://www.xunruicms.com/doc/534.html
    var Mpage=1;
    
    //滚动显示更多
    var scroll_get = true;  //做个标志,不要反反复复的加载
    $(document).ready(function () {
        $(window).scroll(function () {
            if (scroll_get==true &&  (400 + $(window).scrollTop())>($(document).height() - $(window).height())) {
                scroll_get = false;
                layer.msg('内容加截中,请稍候',{time:1000});
                dr_ajax_load_more();
            }
        });
    });
    
    function dr_ajax_load_more(){
        Mpage++;
        $.get('/index.php?s=api&c=api&m=template&name=list_data.html&module={MOD_DIR}&catid={$catid}&format=json&page='+Mpage+'&'+Math.random(),function(res){
            $('.footer-cont').hide();
            if(res.code==1){
                if(res.msg==''){
                    layer.msg("已经显示完了",{time:500});
                }else{
                    $('#content_list').append(res.msg);
                    scroll_get = true;
                }
            }else{
                layer.msg(res.msg,{time:2500});
            }
        }, 'json');
    }
    /index.php?s=api&c=api&m=template&name=list_data.html&module={MOD_DIR}&catid={$catid}&format=json&page='+Mpage+'&'+Math.random(),function(res){这里url里面传了 {$catid} 那你也得把你的uid传进去呀改成 &uid={$uid}likeren
    满意答案
  • likeren
    #4楼    likeren
    2021-11-23 10:06:12
    Chrome 0
    @K大帅:感谢帮助!换个加载方式再试试