我无法删除backbone.js中的现有localstorage值

时间:2016-03-10 21:39:09

标签: javascript backbone.js backbone-local-storage

作为个人项目,我正在使用backbone.js中的食物计算器。我通过backbone.localstorage.js存储食物条目。我的大部分工作都很好。我唯一的问题是在我保存项目后点击刷新,我无法删除这些项目。如果我添加一个项目,我可以在删除它后直接将其删除。

这是我初始化所有内容的功能:

initialize: function () {        
        this.model = new SearchList();
        this.foods = new AllFoods();
        this.journal = new FoodJournalDay();
        this.prepCollection = _.debounce(this.prepCollection, 1000);
        this.$totalcal = $('#totalcal span');
        this.$totalcalfat = $('#totalcalfat span');
        this.$totalprotein = $('#totalprotein span');
        this.$totalcarb = $('#totalcarb span');
        this.$totalfat = $('#totalfat span');
        this.$totalsugar = $('#totalsugar span');
        this.$totalsodium = $('#totalsodium span');
        this.$totalpotassium = $('#totalpotassium span');
        this.$list = $('#listing');
        this.$breakfast = $('#breakfast');
        this.$lunch = $('#lunch');
        this.$dinner = $('#dinner');
        this.$snack = $('#snack');
        this.$tracked = $('#tracked');

        this.listenTo(this.journal, 'all', _.debounce(this.render, 0));
        this.model.on('destroy', this.remove, this);
        this.listenTo(this.journal, 'destroy', this.renderfoods);        
        this.foods.fetch();        

        var myNotes = new FoodJournalDay();
        myNotes.fetch();

        myNotes.models.forEach(function(model){

            var mealli = model.get("html");

            var calcount = parseFloat(model.get("calories"));
            var proteincount = parseFloat(model.get("protein"));
            var carbscount = parseFloat(model.get("carbs"));
            var fatcount = parseFloat(model.get("fat"));
            var sugarcount = parseFloat(model.get("sugar"));

            totalcal += calcount;
            totalprotein += proteincount;
            totalcarb += carbscount;
            totalfat += fatcount;
            totalsugar += sugarcount;

            switch (model.get("meal")) {

                case 'Breakfast':
                    $('#breakfast').append(mealli);
                    break;
                case 'Lunch':
                        $('#lunch').append(mealli);
                    break;
                case 'Dinner':
                        $('#dinner').append(mealli);
                    break;
                case 'Snack':
                    $('#snack').append(mealli);
                    break;
                default:
                    //alert("Please select a meal!");
            }


            $('#totalcal span').html(totalcal);
            $('#totalprotein span').html(totalprotein);
            $('#totalcarb span').html(totalcarb);
            $('#totalfat span').html(totalfat);
            $('#totalsugar span').html(totalsugar);
        });
    },

这是我的删除功能:

destroy: function (e) {
        var $li = $(e.currentTarget).closest('li');
        var id = $li.attr('data-id');
        $li.remove();

        console.log("li id: " + id);
        console.log(this.journal);

        this.journal.get(id).destroy();
    },

我对我正在做的事情做了一个小提琴: https://jsfiddle.net/brettdavis4/ynm2sse9/2/

谢谢!

1 个答案:

答案 0 :(得分:1)

我回到第2轮:p。

您在视图中添加了2个相同的集合。你应该坚持一个。

最初你有this.journal = new FoodJournalDay();作为你的收藏品。在我之前的回答this.journal.get(id).destroy();中成功删除了该项目。但是,在新代码中,您创建了另一个集合var myNotes = new FoodJournalDay();。这是毫无意义的,因为您已经为FoodJournalDay()分配了this.journal个集合。

您使用myNotes填充了fetch(),因此您将this.journal留空了。由于this.journal正在执行删除操作,因此会尝试查找标识为this.journal.get(id)的模型。这会返回undefined,因为没有id的模型,事实上集合中根本没有模型。这就是您收到错误消息Cannot read property 'destroy' of undefined的原因。

当某些内容无法正常工作时,我建议您按照程序流程并在所有地方放置console.log()语句,检查您的收藏品,模型的内容,并查看是否可以发现任何意外行为。< / p>

https://jsfiddle.net/guanzo/1mq7mdm1/

我替换了

var myNotes = new FoodJournalDay();
myNotes.fetch();

myNotes.models.forEach(function(model){

有了这个。使用原始集合。

this.journal.fetch();
this.journal.models.forEach(function(model){