我在我的 Rails 应用程序的一部分中使用 Angularjs,效果很好。但我想知道如何在 link_to 中使用 Angular 值。
这是我的伪代码:
%table
%tr{"ng-repeat" => "book in books"}
%td
{{book.title}}
%td= link_to "Show", book_url({{book.id}})
这给了我一个错误:
syntax error, unexpected '}', expecting tASSOC
这也可能与导致错误的 HAML 有关,但是如何在 link_to 中发送 ID?