Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using angular.js often items like ng-click or ng-model are written directly in the html form element like so....

<input type="text" ng-model="name">

How would I do that with rails? As rails uses embedded ruby and generates the html....

<%= form_for(@user) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>

How would I add the ng-model to <%= f.text_field :name %> ?

share|improve this question

3 Answers

up vote 16 down vote accepted

Ideally, you don't want to be mixing embedded ruby interpolation and Angular's interpolation. It's better to have ruby asynchronously serve JSON to Angular, and let Angular take care of filling in the data on the client side.

share|improve this answer
Yeah after thinking about this, I think that makes sense code wise. – HelloWorld Jun 21 '12 at 21:24

Try this, when it's a hyphen separated word, you need to put within a hash notation.

f.text_field :name, :ng => {:model => "name"}
share|improve this answer
1  
you can also use a string key: "ng-model" => "name" – Mikey Feb 8 at 16:39

I think you can use the :html option to set any element attributes. Haven't tried it with angular.js special attributes though ;-)

f.text_field :name, :html => { :ng-model => "name" }

share|improve this answer
cool will give that a try – HelloWorld Jun 19 '12 at 19:45
did not work :( – HelloWorld Jun 19 '12 at 21:05
pass the html options hash with the value portion, not the html key, i.e f.text_field :name, :ng-model => "name" – zetetic Jun 19 '12 at 23:15
Also, the docs are your friend: apidock.com/rails/v3.2.1/ActionView/Helpers/FormHelper/… – zetetic Jun 19 '12 at 23:17
1  
This makes no sense to me. When you're calling a helper, it's supposed to render a string back to your html template, given some source parameters. The goal of Angular is to update the bindings each time they change and it won't, obviously, call the rails helper magically again. If you want Angular behavior you have to stick to plain html. – yagooar Jan 6 at 21:48
show 1 more comment

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.