2016-11-07 68 views
0

我使用角度hottowel模板来开发我的web应用程序。路由配置代码文件如下图所示。如何添加外部链接到Angular SPA菜单?

(function(){ 
'use strict'; 

var app = angular.module('app'); 

// Collect the routes 
app.constant('routes', getRoutes()); 

// Configure the routes and route resolvers 
app.config(['$routeProvider', 'routes', routeConfigurator]); 

function routeConfigurator($routeProvider, routes) 
{ 
    routes.forEach(function(r) 
    { 
     setRoute(r.url, r.config); 
    }); 

    $routeProvider.otherwise({ redirectTo: '/' }); 

    function setRoute(url, definition) 
    { 
     definition.resolve = angular.extend(definition.resolve || {}, { 
      prime: prime 
     }); 

     $routeProvider.when(url, definition); 
    } 
} 

prime.$inject = ['datacontext']; 
function prime(dc) { return dc.prime(); } 

// Define the routes 
function getRoutes() 
{ 
    return [ 
     { 
      url: '/', 
      config: { 
       templateUrl: 'app/dashboard/dashboard.html', 
       title: 'dashboard', 
       settings: { 
        nav: 1, 
        content: '<i class="fa fa-dashboard"></i> Dashboard' 
       } 
      } 
     }, { 
      url: '/customers', 
      config: { 
       title: 'customers', 
       templateUrl: 'app/customer/customers.html', 
       settings: { 
        nav: 2, 
        content: '<i class="fa fa-calendar"></i> customers' 
       } 
      } 
     }, 
     { 
      url: '/customer/:id', 
      config: { 
       title: 'customer', 
       templateUrl: 'app/customer/customerdetail.html', 
       settings: {} 
      } 
     } 
    ]; 
}})(); 

我需要将外部链接添加到我的菜单中,例如www.google.com。我怎么能添加另一个链接到这个路线配置像波纹管。

{ 
     url: 'www.google.com', 
     config: { 
      title: 'MyExternalLink', 
      settings: {} 
     } 
    } 
+0

''加入 –

+0

协议将定位出.right? –

+0

Nikhil不工作 – Wella

回答

相关问题