AngularJS路线如SammyJS,Grapnel还是Satnav?

时间:2014-10-28 02:09:47

标签: javascript angularjs routes

如何在AngularJS中创建像SammyJS一样的路线?

示例:

.config(function($routeProvider) {
    $routeProvider
        .when('/photos/:date', {
            controller: function($scope) {
               // foo
            });

});

我不需要模板或ng-view,例如,我需要执行ajax请求并打开模态。

有什么想法吗? Tks家伙

1 个答案:

答案 0 :(得分:0)

.config(function($routeProvider) {
    $routeProvider
        .when('/photos/:date', {
            templateUrl: 'someView.html', 
            controller: function($scope,$http) {

               $http.get('/someUlr').then(function(res){});
            });

});

试试这个