如何在AngularJS中创建像SammyJS一样的路线?
示例:
.config(function($routeProvider) {
$routeProvider
.when('/photos/:date', {
controller: function($scope) {
// foo
});
});
我不需要模板或ng-view,例如,我需要执行ajax请求并打开模态。
有什么想法吗? Tks家伙
答案 0 :(得分:0)
.config(function($routeProvider) {
$routeProvider
.when('/photos/:date', {
templateUrl: 'someView.html',
controller: function($scope,$http) {
$http.get('/someUlr').then(function(res){});
});
});
试试这个