AngularJS中的ngRoute没有路由到ashx文件

时间:2017-09-07 11:02:21

标签: javascript angularjs ngroute

我正在尝试将链接路由到.ashx服务文件,但它无效。我重定向到.html文件时工作正常,但当我将其重定向到.ashx时,文件会出错;当前目录中不存在该文件。

以下是我的App.config代码:

App.config(function($routeProvider, $locationProvider) {
    $routeProvider.caseInsensitiveMatch = true;
    $routeProvider
        .when("/home", {
            controller: "homeController",
            templateUrl: "templates/home.html",
        })
        .when("/api", {
            controller: "apiController",
            templateUrl: "../ExclusiveAutoSales_Handler.ashx",
        })
        .when("/filter", {
            controller: "filterController",
            templateUrl: "templates/filter.html",
        })
        .otherwise({
            redirectTo: "/home"
        })
    $locationProvider.html5Mode(true);
});

0 个答案:

没有答案