web-dev-qa-db-ja.com

Angularおよびエクスプレスルーティング

私は多くのAngular-expressシードを試してきましたが、それらがどのように機能するかを試しました。私が抱えている問題は:1)。テンプレートにejs-localsを使いたいです。 2)。サーバー側とクライアント側のルーティングを正しく構成する方法。また、エラーを生成しないために、/aboutなどのURLを入力する場合:cannot /get

angularapp.js次を含む:

// angular stuff

$routeprovider.when('/', {
 templateUrl: 'index',
 controller: IndexCtrl
});
$routeprovider.when('/about', {
 templateUrl: 'partials/about',
 controller: IndexCtrl
});

express app、jsに含まれるもの:

app.get('/', routes.index);
app.get('/about', routes.about);

ルートフォルダ「index.js」を含む:

exports.index = function(req, res){
  res.render('index',{name:"Hello"});
};

exports.about = function (req, res) {
  res.render('partials/about');
};

Viewsフォルダー次を含むindex.ejs

<!--HTML head/navigation bar here-->
<div ng-view></div>

また、viewsフォルダー内はpartialsフォルダーです:(Views/partials /

index.ejs:

 <h1>Index</h1>

about.ejs:

<h1>About</h1>
40
ashley

これらのルートをエクスプレスサーバーに追加します

app.get('/partials/:filename', routes.partials);
app.use(routes.index);

その後、routes.js

exports.partials = function(req, res){
  var filename = req.params.filename;
  if(!filename) return;  // might want to change this
  res.render("partials/" + filename );
};

exports.index = function(req, res){
  res.render('index', {message:"Hello!!!"});
};

これにより、partials/indexおよびpartials/about

ここに要点があります: https://Gist.github.com/4277025

30
jaime

それが私がやった方法です。私はJadeを使用していますが、Ejsも同様です。

app.js

// Routes
app.get('/', routes.index);
app.get('/partials/:name', routes.partials);

テンプレートは/ views/partialsに保存されます。

app.set('views', __dirname + '/views');

クライアント側では、角度の$ routeProviderを使用してパーシャルをロードできます。

/*global define */

define([
   'angular',
   'controllers/aController',
   'controllers/bController'],
   function (angular, aController, bController) {
    'use strict';

    return angular.module('controllers', [], ['$controllerProvider', '$routeProvider',
        function ($controllerProvider, $routeProvider) {
            $controllerProvider.register('AController', ['$scope', aController]);
            $controllerProvider.register('BController', ['$scope', bController]);
            // routes
            $routeProvider.when('/A', {templateUrl: 'partials/A', controller: aController});
            $routeProvider.when('/B', {templateUrl: 'partials/B', controller: bController});
            $routeProvider.otherwise({redirectTo: '/A'});
        }]);
    }
);
4
asgoth

私はヒスイとアンギュラーの使用に苦労していました。これが私のために働いたものです。

ディレクトリ構造:

public
  |-js
  |-css
  |-views
    |-main
      -main.jade
    |-auth
      -login.jade
server
  |-includes
    -layout.jade
  |-views
    -index.jade
server.js

次に、ルーティングのserver.js構成では次のようになります。

app.configure(function(){
    app.set('views', __dirname + '/server/views');
    app.set('view engine', 'jade');
})
// server side route for the partials files
app.get('/views/*', function(req, res){
    res.render('../../public/views/' + req.params);
})

// everything handled by this route
app.get('*', function(req, res){
    res.render('index');
})

次に、angularルートは次のようになります。

$routeProvider.when('/', {
    templateUrl: '/views/main/main',    // gets main.jade from server
    controller: 'mainCtrl'
})

俺の index.jadeは次のようになります。

extends ../includes/layout

block main-content
    .navbar.navbar-inverse.navbar-fixed-top
        div(ng-include="'/views/account/navbar-login'")
    section.content
        div(ng-view)
4
Connor Leech

このようなものを試すことができます、

const path = require("path");

/* For serving static HTML files */
app.use(function(req, res, next) {
    res.sendFile(path.resolve(__dirname + '/dist/index.html'));
});

/* For ejs, jade/pug engines */
app.use(function(req, res, next) {
    res.render(path.join(__dirname, '/dist/index.pug'));
});
0