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

Models: entry.js.coffee

class Raffler.Models.Entry extends Backbone.Model

  url: '/api/entries/12345'

routers: entries_router.js.cofee

routes:
'entries/:id': 'show'

show: (id) ->
  @model = new Raffler.Models.Entry()
  @model.fetch()
  view1 = new Raffler.Views.Profile(model: @model)
  $("#profile_container").html(view1.render().el)

View: profile.js.coffee

class Raffler.Views.Profile extends Backbone.View
  template: JST['entries/profile']

render: ->
  $(@el).html(@template(entry: @model))
  this

Template: profile.jst.eco

<div class="profile_desc">
  <table>
    <tr>
      <td valign="top" class="desc_heading">about: </td>
      <td>
        <%= @model.get('aboutMe') %>
      </td>
    </tr>
  </table>
</div>

JSON Response:

{"aboutMe":"I am a proud Ruby Developer}

I can see the ajax call fetching the data. But i guess its rendering the view file before that.

Got the error in Firebug:

TypeError: this.model is undefined
    __out.push(__sanitize(this.model.get('aboutMe')));

How can i wait for the model ajax to complete?

share|improve this question
What is producing that error? Looks like something from a compiled template. – mu is too short Dec 31 '12 at 8:53
Edited & added the view, template, response. yeah its compiling and throws the error – Srikanth Dec 31 '12 at 9:04

1 Answer

up vote 1 down vote accepted

Before fetching, you must specify the callback function, something like this:

show: (id) ->
  @model = new Raffler.Models.Entry()
  @model.on 'sync', => @create_profile_view @model
  @model.fetch()

create_profile_view: (model) ->
  view1 = new Raffler.Views.Profile(model: model)
  $("#profile_container").html(view1.render().el)

You can use different events you want (http://backbonejs.org/#Events).

P.S. I prefer extract render logic and fetching to view.

share|improve this answer
The error was due to this: I have done @model.get('aboutMe') instead of @entry.get('aboutMe') .. And this Sync worked like a charm. Thanks! – Srikanth Dec 31 '12 at 9:31

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.