我正在尝试在Angularjs中添加详细视图
这是我的app.js文件
angular.module('frontendApp', ['ngAnimate', 'ngCookies', 'ngResource', 'ui.router', 'ngSanitize', 'ngTouch']).config ($stateProvider) ->
$stateProvider.state('home',
url: "/"
templateUrl: "home.html"
).state('services',
url: "/services"
templateUrl: "services.html"
).state('detail',
url: "/detail"
templateUrl: "detail.html"
)
我创建了文件detail.html,但这不起作用,我无法访问http://localhost:3000/#/detail中的视图。我还要做点什么吗?