I have an angularJS application that is a gallery. For each picture, associated with it is an ng-href
with #/{{files.id}}
.
<a ng-href="#/{{files.id}}"...
However, when I click it, the URL that is ultimately displayed is
http://localhost:3000/gallery#%2F0
which destroys my angular routing of
when('/gallery/:imageID', {
templateUrl: 'load_image.html'
}).
Can someone explain to me how to encode the URL's correctly? Or just use something that doesn't encode the forward slash?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…