I can't quite wrap my head around this, but while following this tutorial line-by-line, my Backbone app refuses to render the view template. Please point me in the right direction, as this is my first experience with Backbone, and I've been circling around this problem for the past two days.
If I were to replace $('#container').html(view.render().el) with $('#container').html('<h1>Raffler</h1>') , it would produce the desired outcome. I don't think the el attribute has a value.
My /index.jst.coffee file:
javascript
class Raffler.Views.EntriesIndex extends Backbone.View
template: JST['entries/index']
render: ->
$(@el).html(@template())
this
Turns out it was just an indent issue. Dope.
I can't quite wrap my head around this, but while following this tutorial line-by-line, my Backbone app refuses to render the view template. Please point me in the right direction, as this is my first experience with Backbone, and I've been circling around this problem for the past two days.
This is my /entries.js file:
If I were to replace
$('#container').html(view.render().el)
with$('#container').html('<h1>Raffler</h1>')
, it would produce the desired outcome. I don't think theel
attribute has a value.My /index.jst.coffee file:
Any help is appreciated!!