Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Code:

I am new to backbone.js and trying to build an app with backbone.js and php. When I am trying to call "add" in the router, I am getting error - Uncaught TypeError: Object [object Object] has no method 'set'. Plz help me to find my mistake.

Thanks.

    // Models
    window.Users = Backbone.Model.extend({
        urlRoot:"./bb-api/users",
        defaults:{
            "id":null,
            "name":"",
            "email":"",
            "designation":""
        }
    });

    window.UsersCollection = Backbone.Collection.extend({
        model:Users,
        url:"./bb-api/users"
    });


    // Views


    window.AddUserView = Backbone.View.extend({

        template:_.template($('#new-user-tpl').html()),

        initialize:function(){
            this.model.bind("click", this.render, this);
        },

        render:function(){
            $(this.el).html(this.template(this.model.toJSON()));
            return this;
        },

        events:{
            "click .add":"saveUser"
        },

        saveUser:function(){ alert('saveUser');
            this.model.set({
                name:$("#name").val(),
                email:$("#email").val(),
                designation:$("#designation").val()
            });

            if(this.model.isNew()){
                this.model.create(this.model);
            }
            return false;
        }
    });


    // Router
    var AppRouter = Backbone.Router.extend({

        routes:{
            "":"welcome",
            "users":"list",
            "users/:id":"userDetails",
            "add":"addUser"
        },


        addUser:function(){ 
            this.addUserModel = new UsersCollection();
            this.addUserView = new AddUserView({model:this.addUserModel});
            $('#content').html(this.addUserView.render().el);
        }


    });

    var app = new AppRouter();
    Backbone.history.start();
share|improve this question
2  
Your passing a collection to the view and then trying to treat it as an instance of the model. It's not. It's a collection. – asawyer Jun 26 '12 at 12:53
To clarify: the Backbone.Collection does not have a metod set. – jakee Jun 26 '12 at 13:06
Thanks for your help – Nag Jun 26 '12 at 13:09
2  
If you're using a collection, you should new View({ collection: ... }) instead of new View({ model: ... }) and this.collection inside the view instead of this.model. That should prevent some confusion. – mu is too short Jun 26 '12 at 15:56
Hi @jakee sorry to bring up old thread but can you confirm your comment? I see it here – user1837687 Apr 28 at 12:35

1 Answer

i usually make a function to search through a collection like this: that way you can reference a particular item in an item and be able to change it around without getting errors.

<!DOCTYPE html>
<html>
<header>
    <title >Farax Mobile - JavaScript Object Oriented Programming </title>
</header>   
<body>
    Object Oriented JavaScript: </br>

    - User has a collection people made up of persons </br>
    - People is an array/collection of individual person </br>
    - Person is just a person </br>




    <script src="j.js" ></script> <!-- jQuery -->       
    <script src="us.js" ></script> <!-- underscore -->  
    <script src="bb.js" ></script> <!-- Backbone.js --> 

    <!-- FARAXMOBILE.COM -->

    <script>
        console.log("JavaScript Object Orientated Programming");

        //  PERSON MODEL  
        var Person = Backbone.Model.extend({

            defaults: {
                jid : null,
                name : null,
                status : null, 
                picture : null
            },
            initialize: function(){
                console.log("==> NEW PERSON MODEL INITIALISED");

                // you can add event handlers here...


            }
        });


        // PEOPLE COLLECTION
        var People = Backbone.Collection.extend({
            initialize: function(){ console.log("==> NEW PEOPLE COLLECTION INITIALISED"); },
            model: Person

        });



        // USER MODEL
        var User = Backbone.Model.extend({
            defaults: {
                jid: null,
                name : null, 
                status : null, 
                picture :null,
                people: new People()
            },
            initialize: function(){
                console.log("==> NEW USER INITIALISED");

            },
            findPerson: function(jid){
                console.log("==> FIND: ", jid)

                // return person;

            }
        })



        // create new user
        var user = new User();
        user.set({name:"farax"});

        // create person
        var person = new Person();
        person.set({name:"issa"});

        // add person to people collection
        var people = user.get("people");

        //people.add(person);





    </script>

    <!-- FARAX -->
</body

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.