如何使用Node.js在Heroku中托管AngularJS应用程序而不使用yeoman?

时间:2014-11-22 05:01:20

标签: angularjs node.js heroku express angularjs-ng-route

我尝试使用Node.js将AngularJS的Hello World版本推送到Heroku中。但有多个视图(部分)。

我首先在不使用ngRoute的情况下部署了Hello World,这意味着:没有部分。那很好,很顺利。然后,我尝试推送2个简单的部分。但我认为问题是托管应用程序,同时要求部分。我知道这不是正确的做法,我想要你的意见。

这是我的index.html:

<!DOCTYPE html>
<html ng-app="main">
<head>
    <meta name="name" content="something">
    <title></title>
</head>
<body>
    <section ng-view=""></section>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular.min.js" type="text/javascript" charset="utf-8"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular-route.min.js" type="text/javascript" charset="utf-8"></script>

    <script type="text/javascript" charset="utf-8">
    angular.module('main', ['ngRoute'])
    .config(['$routeProvider', '$http', function ($routeProvider, $http){
        console.log('hola');
        $routeProvider
        .when('/', {
            resolve: **??? I tried with templateUrl but did not work either**
            ,controller: 'indexCtrl'
        })
        .when('/second', {
            resolve: **???**
            ,controller: 'secondCtrl'
        })
        .otherwise({
            redirectTo: '/'
        });
    }])
    .controller('indexCtrl', ['$scope', function ($scope){
        $scope.helloWorld = "Hello World";
    }])
    .controller('secondCtrl', ['$scope', function ($scope){
        $scope.helloWorld = "World Hello";
    }]);
    </script>
</body>
</html>

部分&#39; templates / second.html&#39;

<h1>{{ helloWorld }}<h1>
<a href="#/" title="">Go to First</a>

部分&#39; templates / index.html&#39;

<h1>{{ helloWorld }}<h1>
<a href="#/second" title="">Go to Second</a>

我的快递:

var express = require('express'),
app = express();
app.set('view engine', 'html');
app.get('/', function(req, res) {
    res.sendfile('index.html', {root: __dirname })
});
app.get('/index', function (req, res){
    res.sendfile('templates/index.html', {root: __dirname })
});
app.get('/second', function (req, res){
    res.sendfile('templates/second.html', {root: __dirname })
});
var server = app.listen(process.env.PORT || 80);

显然,Procfile:

web: node index.js

到目前为止,我发现的所有教程都使用了Yeoman,但我不想使用Yeoman或任何其他脚手架(如果那就是那个)工具。

问:是否可以在我存储部分内容的Heroku应用程序中托管AngularJS应用程序?如果是这样,我做错了什么?如果没有,最好的方法是什么?

1 个答案:

答案 0 :(得分:18)

嗯,我不知道为什么我会投票。但无论如何,我发现我的问题是this示例。

实际问题是我没有使用express:

对“目录”进行“公开”
app.use(express.static(__dirname));

这是hello world

<强>的index.html

<!DOCTYPE html>
<html ng-app="main">
<head>
    <meta name="name" content="something">
    <title></title>
</head>
<body>
    <section ng-view=""></section>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular.min.js" type="text/javascript" charset="utf-8"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular-route.min.js" type="text/javascript" charset="utf-8"></script>

    <script type="text/javascript" charset="utf-8">
    angular.module('main', ['ngRoute'])
    .config(['$routeProvider', function ($routeProvider){
        console.log('hola');
        $routeProvider
        .when('/', {
            templateUrl: 'templates/index.html'
            ,controller: 'indexCtrl'
        })
        .when('/second', {
            templateUrl: 'templates/second.html'
            ,controller: 'secondCtrl'
        })
        .otherwise({
            redirectTo: '/'
        });
    }])
    .controller('indexCtrl', ['$scope', function ($scope){
        $scope.helloWorld = "Hello World";
    }])
    .controller('secondCtrl', ['$scope', function ($scope){
        $scope.helloWorld = "World Hello";
    }]);
    </script>
</body>
</html>

服务器/ index.js

var express = require('express'),
app = express();

app.use(express.static(__dirname));
app.get('/', function(req, res) {
    res.sendfile('index.html', {root: __dirname })
});
var server = app.listen(process.env.PORT || 80);

<强> Procfile

web: node index.js

<强>模板/ index.html中

<h1>{{ helloWorld }}<h1>
<a href="#/second" title="">Go to Second</a>

<强>模板/ second.html

<h1>{{ helloWorld }}<h1>
<a href="#/" title="">Go to First</a>

我希望这有助于某人。

回答我的问题。是的,有可能,我做错了是不能使模板(文件)可访问。如果您希望在可访问的内容上获得额外的安全性,则可以创建一个名为public的文件夹。然后将该目录设为静态:

app.use(express.static(__dirname + '/public'));

然后您也可以使用不同的路由与REST应用程序进行通信。像:

app.get('/users', function(req, res) {
    res.json({...});
});