Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8013577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T19:40:08+00:00 2026-06-04T19:40:08+00:00

This might be a really simple question but I’m having a heck of a

  • 0

This might be a really simple question but I’m having a heck of a time finding an answer.

Using backbone, I have this line:

Person = Backbone.Model.extend();

I then use that in a collection filled from a URL. For the sake of the example, say I have a first and last name, and I want to do something like:

Person = Backbone.Model.extend({
    FullName: this.get("firstName") + " " + this.get("lastName")
});

I can call that inside backbone using, for example, People.first().FullName(). But if I pass People.first() to my view and render that in a template, it seems to have no knowledge what FullName is.

How would I add a custom property to a model in Backbone and use that inside a template?

Cheers!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T19:40:08+00:00Added an answer on June 4, 2026 at 7:40 pm

    Your FullName definition doesn’t make any sense so I’m going to assume that you really meant this:

    Person = Backbone.Model.extend({
        FullName: function() {
            return this.get("firstName") + " " + this.get("lastName");
        }
    });
    

    Usually you’ll call toJSON on your models to serialize them for use by a template:

    var html = template({ person: person.toJSON() })
    

    The default toJSON simply returns a (shallow) copy of the model’s internal attributes. The attributes will, presumably, have both firstName and lastName properties but FullName is a function on the model so it won’t be in the attributes.

    You could provide your own toJSON:

    toJSON: function() {
        var j = _(this.attributes).clone();
        j.FullName = this.FullName();
        return j;
    }
    

    and then you’d have a FullName in your template. However, toJSON is also used to serialize the model to send data to the server; your server would end up seeing a FullName and it might get upset about that. You could add another serializer specifically for templates:

    // `serialize` is another common name for this
    for_template: function() {
        var j = this.toJSON();
        j.FullName = this.FullName();
        return j;
    }
    

    and then use that function to supply data for your templates:

    var html = template({ person: person.for_template() });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There might be a really simple solution to this question, but i just don't
I feel like the answer to this question is really simple, but I really
I know this might be really a simple question but I don't know the
This might be a pretty simple question, but if there really is a difference,
Might be a simple question, but I can't find an answer that fits this
I feel like this might be really simple but I'm just not getting it
This might be a very vague question but I guess I don't really understand
I know this question might be repeated many times but would really appreciate any
This might seem a really bizarre question, but just go with me for a
Unfortunately, the answer to this question isn't quite as simple as it sounds... but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.