使用AngularJS将ASP.NET CORE Web应用程序发布到IIS

时间:2016-08-10 07:25:43

标签: c# angularjs iis asp.net-core asp.net-core-mvc

我们正在使用angularjs ver编写一个新的asp.net核心Web应用程序(带有完整的.net框架)。 1.5.8。
我们刚开始使用该应用程序,因此它非常简单,只有一个页面包含一个包含学生数据的表格。
现在,当我使用IIS Express运行应用程序时,应用程序正常运行,数据显示并且浏览器控制台中没有错误。
但是,当我将应用程序发布到我的本地IIS时,它不起作用。角度视图为空,因此只显示_layout 我已经尝试了https://docs.asp.net/en/latest/publishing/iis.html中描述的步骤,但就像我说的那样,它不起作用 这是我正在使用的代码:

Program.Main()

public static void Main(string[] args)
        {
            var host = new WebHostBuilder()
                .UseKestrel()
                .UseContentRoot(Directory.GetCurrentDirectory())
                .UseIISIntegration()
                .UseStartup<Startup>()
                .Build();

            host.Run();
        }  

site.js(有角度的东西)

angular.module('digitalRural', ['ngRoute', 'ngMaterial'])
    .config(function ($routeProvider) {
        $routeProvider
            .when('/',                                                  // Students controller
            {
                controller: 'StudentsController as students',
                templateUrl: 'html/students/index.html'
            })
            .when('/student/edit/:studentId',
            {
                controller: 'EditStudentController as editStudent',
                templateUrl: 'html/students/edit.html'
            })
            .when('/student/new',
            {
                controller: 'NewStudentController as newStudent',
                templateUrl: 'html/students/new.html'
            })
            .when('/login/',                                            // Login controller
            {
                controller: 'LoginController as loginCtrl',
                templateUrl: 'html/home/welcome.html'
            })
            .otherwise({
                redirectTo: '/'
            });
    })
    .controller('StudentsController',
        function ($http) {
            var students = this;

            $http.get("/api/students")
                .then(function (response) {
                    students.items = response.data;
                });
        })
    .controller('LoginController',
        function ($http) {
            var loginCtrl = this;

            $http.get("/api/login")
                .then(function (response) {
                    loginCtrl.currentUser = response.data;
                });
        });  

以下是已部署应用的图片:
enter image description here

以及Chrome控制台中的错误:

Failed to load resource: the server responded with a status of 404 (Not Found)
angular.js:13920 Error: [$compile:tpload] http://errors.angularjs.org/1.5.8/$compile/tpload?p0=html%2Fstudents%2Findex.html&p1=404&p2=Not%20Found
    at Error (native)
    at http://localhost/DigitalRural/lib/angular/angular.min.js:6:412
    at http://localhost/DigitalRural/lib/angular/angular.min.js:156:511
    at http://localhost/DigitalRural/lib/angular/angular.min.js:131:20
    at m.$eval (http://localhost/DigitalRural/lib/angular/angular.min.js:145:347)
    at m.$digest (http://localhost/DigitalRural/lib/angular/angular.min.js:142:420)
    at m.$apply (http://localhost/DigitalRural/lib/angular/angular.min.js:146:113)
    at l (http://localhost/DigitalRural/lib/angular/angular.min.js:97:322)
    at J (http://localhost/DigitalRural/lib/angular/angular.min.js:102:34)
    at XMLHttpRequest.t.onload (http://localhost/DigitalRural/lib/angular/angular.min.js:103:4)  

有什么奇怪的是,一切都可以正常使用IIS Express,但是使用IIS,我收到上面的错误消息。

是什么给出了?

2 个答案:

答案 0 :(得分:1)

错误是404,因为您的模块无法加载模板,请检查您的编译版本是否在“html / students /”或“html / home /".

中包含此模板

答案 1 :(得分:0)

好的,找到了问题的原因 我不知道AngularJS从服务器的根目录中引用了urls。所以,以下api电话:
$http.get("/api/students")
无法找到,因为它缺少服务器根目录:“MyServer / api / students /” 我在这里找到了解决方案:Using a Relative Path for a Service Call in AngularJS

谢谢大家的回答。他们以其他方式帮助了我:)。