我正在关注课程Staying Sharp With AngularJs。
课程在app.ts
中添加了一些代码:
angular
.module("NoteWrangler", ["ngRoute"])
.config(function ($routeProvider: angular.route.IRouteProvider) {
$routeProvider
.when("/notes", {
templateUrl: "templates/pages/notes/index.html"
});
});
好的,所以链接形成如下:
somedomain/index.html/#/myPage
但是当我尝试我的网址是这样构建的时候:
somedomain/index.html#!/myPage
为什么不同?
在".../#/..."
和"...#!/..."
之间,我的意思是
我怎样才能在这两者之间做出改变?