|
|
|
|
|
by davej
4814 days ago
|
|
Angular uses DOM templating instead of string-based templating (most current JS templating engines are string-based), so you would definitely need to fire up a headless browser (PhantomJS) or DOM (JSDOM) of some sort to get it working. It would be very slow if you were doing this dynamically so you would probably want to regularly compile and cache your pages. Some links on this topic:
https://github.com/steeve/angular-seo
http://www.yearofmoo.com/2012/11/angularjs-and-seo.html |
|