Angularjs Ngroute Direct Part Access
My app works fine with ngRoute, but when I'm trying to access my parts directly(from address bar), it returns just the part (without main page). How to hide these parts from a dire
Solution 1:
Your problem is most likely not with your AngularJS routing, but the routing from the server. When you request a page like localhost:8080/account
, your server says "ok, let's JUST deliver the /account
file". But that's not quite right, because you actually want the whole app to load. It's a common problem, and not too bad to solve.
I don't know what your backend looks like, but here's a generic example with express/node:
var express = require('express'),
routes = require('./routes');
app.get('/', routes.index);
app.get('*', routes.index);
"Every request to the backend should initially render the complete layout in order to load our Angular app. Only then will the client-side rendering take over."
Post a Comment for "Angularjs Ngroute Direct Part Access"