geekdeepak
geekdeepak

Reputation: 1175

backbone.js views to rails view

My main goal is to remove the backbone.js views/template and implement them to rails views. What is the best way/practices to do this? As there is lots of stuff going on the backbone.js views, is there any way that i can preserve the functionality and just convert them in rails views.

Helpful if you answer contains the steps. Thanks.

Upvotes: 0

Views: 125

Answers (1)

fguillen
fguillen

Reputation: 38792

I don't think is good idea to make any kind of dependency between your server layer and your client layer.

Starting from the point that the View concept in Backbone is nothing related to the View concept in Rails.

Upvotes: 1

Related Questions