Pergunta

Currently I am using backbone-rails in my Rails app. I would like to know how to use client side Haml/Jade backbone.js with that gem and the rails asset pipline.

Foi útil?

Solução

I'm using haml_coffee_assets and it works perfectly !

Haml templates are compiled with the Rails assets, and then on the client side you "render" the templates.

test.hamlc:

%span
   = @title

on client side:

JST["test"]({title: "Yeah"})

=> <span>Yeah</span>

UPDATE My project has grown very big now (Feb 2012), and I confirm it's working really, really well !

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top