weixin_33698043 2017-12-25 02:01 采纳率: 0%
浏览 22

“初始化” jQuery操作?

So I found this library at GitHub called jTinder, which basically allows me to setup cards that can be left swiped or right swiped. I setup the #tinderslide div: <div id="tinderslide"><ul></ul></div>

I set up the cards using a function:

function generate_cards(){
    $.ajax({
        url:"fetch_cards.php",
        method:"POST",
        data:{"user":user_id},
        success:function(data){
            try{
                var parsedData=JSON.parse(data);
                for(var i=0;i<parsedData.length;i++){
                    var elem="<li class=\"card \"+parsedData[i].id>";
                    elem+="<div class=\"card_wrap\">";
                    elem+=<img src=\""+parsedData[i].picture.url+"\">";
                    elem+="<div class=\"name_location_wrapper\">";
                    elem+="<span class=\"name\">"+parsedData[i].first_name+" "+parsedData[i].last_name+"</span>";
                    elem+="<span class=\"location\"></span>";
                    elem+="</div></div></li>";
                    $("#tinderslide ul").prepend(elem);
                }
                dfd.resolve();
            }
            catch(er){
                console.log(er);
            }
        }
    })
}

and called the jTinder action:

function init(){
        $("#tinderslide").jTinder({
            onDislike: function (item) {
                $(".last").remove();
                $(".card").last().addClass("last");
            },
            onLike: function (item) {
                $(".last").remove();
                $(".card").last().addClass("last");
            },
            animationRevertSpeed: 100,
            animationSpeed: 100,
            threshold: 2
        });
    }

I have d3d set up as a $.Deferred variable and once it's resolved, I call the init() function.

I add ".last" to the last card for changing the background according to what the current object is, since the cards are arranged in reverse order, i.e. the last element is the first.

I then add the first batch of cards from a PHP file, which works fine. I can add the first 10 cards and store the responses just fine.

Next, I checked if the number of cards in the stack is less than 5, in which case, I fetch the next 10 cards. Here lies the problem.

Since the #tinderslide div is already initialized with the jTinder method, I can't initialize it again. The closest I've come to a solution is to check whether the card stack is empty, use $("#tinderslide").remove() to remove the #tinderslide div entirely, and then add it again, append the next cards and reinitialized, which seems to be working for now.

However, my question is: is there a more efficient way to do this, without having to delete and recreate the div entirely?

  • 写回答

1条回答 默认 最新

  • weixin_33708432 2017-12-25 04:25
    关注

    I added a destroy function to the Plugin.prototype:

    destroy: function(element){
        $(element).unbind();
        $(this.element).removeData();
    }
    

    and then called $("#tinderslide").data('plugin_jTinder').destroy();, which seems to work. Thanks to Roamer-1888 for the inputs!

    评论

    报告相同问题?

    悬赏问题

    • ¥20 求各位能用我能理解的话回答超级简单的一些问题
    • ¥15 yolov5双目识别输出坐标代码报错
    • ¥15 这个代码有什么语法错误
    • ¥15 给予STM32按键中断与串口通信
    • ¥15 使用QT实现can通信
    • ¥15 关于sp验证的一些东西,求告知如何解决,
    • ¥35 关于#javascript#的问题:但是我写的只能接码数字和字符,帮我写一个解码JS问题
    • ¥15 prophet运行报错,如何解决?
    • ¥15 用GPU跑pytorch搭建的LSTM的时候出现了奇怪的报错
    • ¥20 前端数据是从session等作用域拿到的,如何取值继续传递后端呢