Skip to content

Instantly share code, notes, and snippets.

@ykhs
Created October 22, 2014 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ykhs/39048d0aff620ec328d4 to your computer and use it in GitHub Desktop.
Save ykhs/39048d0aff620ec328d4 to your computer and use it in GitHub Desktop.
JavaScript養成読本 特集1 第4章 リストA 訂正
var ContactView = Backbone.View.extend({
template: '<div>Name: <%= firstName %> <%= lastName %></div>' +
'<div>Email: <%= email %></div>',
render: function() {
var compiled = _.template(this.template);
var html = compiled(this.model.toJSON());
this.$el.html(html);
return this;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment