Reputation: 131
I am following thinker's tutorials (https://thinkster.io/angular-rails/) on using angular+rails. everything is fine until I try to use angular-rails-templates to put templates in javascript folder. I am new to rails so I don't know how this gem works. but I did follow the tutorial multiple times and still not working.
To sum up, it seems that the 'templates' module injected into angular app is not compiling those templates into templateCache, or the application.js file is ignoring all the files with .html extension.
here is my code on github: https://github.com/collapsarzhang/demo-projects/tree/master/flapper-news
Upvotes: 13
Views: 4447
Reputation: 58405
The solution I found was here: http://ademartutor.azurewebsites.net/angular-rails-templates-gem-error-with-sprockets-3-0-o/
It is a sprockets
incompatibility but 2.1.3 works so use this in your Gemfile:
gem 'sprockets', '2.12.3'
(and obviously a bundle update sprockets
would be required)
Upvotes: 21
Reputation: 2451
In case Rails serves a 404 error pointing to your template file, make sure to name your template different than the .js file you are using it in.
The template service needs to be able to distinguish between my_directive.js
and my_directive.html
compiled to the template cache in .js. You should name your template differently, eg. my_directive_template.html
.
Upvotes: 0
Reputation: 2536
It is enough by doing
bundle update
as the library is looking for sprockets ~> 2
Upvotes: 2