在Angularjs添加一个路线

时间:2015-06-16 17:23:38

标签: angularjs angularjs-routing

我正在尝试在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中的视图。我还要做点什么吗?

0 个答案:

没有答案