angularjs v1.3.15 deep linking / routing / path no longer working with hashtag (Migrated from v1.2.3) -
i new angular , working on code wanted upgrade angular version 1.2.3 1.3.15 (which have never done before). when did, navigation links on index page stopped working; rather seems router.js falls through $routeprovider.otherwise case , redirects /home (you can see refresh in jumbotron). however, notice when click on links, url goes localhost:8888/home
localhost:8888/home#
or localhost:8888/home#home
or localhost:8888/home#info
, page routes don't work (the home page gets refreshed instead) - route appended /home , doesn't know do.
when remove deep linking ( hash / pound / # ) links in index.html, code appears work again, don't understand why. it's highly i'm misunderstanding in breaking changes 1.2 1.3, documentation made seem using # still supported in 1.3.
by "upgrading" replaced angular.js
, angular-resource.js
, , angular-route.js
in project newer versions. using apache karaf, , tested in both chrome , firefox same results.
shortened code below:
here index.html
code works in 1.2.3 , breaks in 1.3.15 (i used both # , #home test if there difference):
<div class="navbar navbar-inverse navbar-fixed-top"> ... <a href="#" class="navbar-brand">my project<small></small></a> ... <div class="collapse navbar-collapse navheadercollapse" data-ng-controller="navcontroller"> <ul class="nav navbar-nav navbar-right"> <li class="{{navdata['home'].css}}"><a href="#home">home</a></li> <li class="{{navdata['info'].css}}"><a href="#info">info</a></li> </ul> </div> </div> </div>
my router.js
looks like:
angular.module("app").config(function ($routeprovider, $locationprovider) { $locationprovider.html5mode(true); $routeprovider.when('/home', { templateurl: "home.html", controller: "homecontroller", ispublic: false }); $routeprovider.when('/info', { templateurl: "info.html", controller: "infocontroller", ispublic: false }); $routeprovider.otherwise({ redirectto: '/home' }); });
with 1.3.15, when replace hash / pound / # signs in index.html, "/" home , "info" instead of "#info", seems work again.
i tried upgrading potential dependencies following:
- ui-bootstrap-tpls-0.13.0.js (was 0.6.0)
- jquery-2.1.4.js (was 2.0.3)
i using:
- bootstrap.js (using 3.0.0)
i have additional libraries didn't know if relevant this. let me know if should add them list.
i attempted simulate seeing in plunker here: angularjs v1.3.15 test # redirect
but links appear working exception of when click link "#" href, page template isn't loaded @ all. don't know if issue related or different.
a few suggestions i've looked (but maybe missed something):
- i did see people upgrading ui-router, i'm not using it; should be? (though plunker seems working
angular-route.js
) - html5 not playing nice in arenas, appears configured in code?
- fixing server allow #, think done since code used work correctly
thanks in advance help! if point me in right direction appreciated!
the hash has specific meaning in html specification. targets element on page. if on page localhost:8888/home
, click on link localhost:8888/home#info
browser jump element id info
, if there one. consequently nothing happens if element doesn't exist.
angular intercepts clicks , url changes , allow change routes instead. avoid confusion (or unintentional behavior) angular has 2 conventions. first using prefix. it's optional , 1 suggested !
. that's why mode called hashbang mode, links routes start #!
.
the second, , more important one, routes start /
. it's href="#/"
, href="#/info"
. , works no matter version of angular using. of course, fixes plunker.
if want use hashes don't activate html5 mode.
one remark last point: server doesn't care #
, since concerns client.
Comments
Post a Comment