angular-ui-router 라이브러리를 사용하고 있으며 URL에 문제가 있습니다.
다음 코드가 있습니다.
app.js :
app.config(function ($stateProvider, $urlRouterProvider) {
$stateProvider
.state('state', {
url: '/state',
templateUrl: 'templates/state.html',
onEnter: function () {
/*... code ...*/
}
})});
index.html :
<a href="#/state">STATE</a>
이것은 작동하지만 <a>
태그 에서 '#'을 제거하면 작동 하지 않습니다.
URL에서 '#'기호를 삭제하려면 어떻게해야합니까?