我正在构建一个 angular 2 应用程序。是一个小的,有3到5个组件,并基于教程。
我了解了如何通过Service
与多个Component
分享日期,方法是将其添加到我bootsrap
的{{1}}函数数组中。
main.ts
是否有类似内容。我想让所有组件都可以使用我的所有路由。我想在某些模板中添加ROUTER_DIRECTIVES
,但如果我不将routerLinks
作为组件的元数据添加到指令数组中,我就无法使用routerLink。
我的问题是,我是否可以通过为应用程序中的每个组件定义全局ROUTER_DIRECTIVES
来避免此代码段?
ROUTER_DIRECTIVES
答案 0 :(得分:2)
目前(RC.4)你可以做到
bootstrap(AppComponent,
[{provide: PLATFORM_DIRECTIVES, useValue: [ROUTER_DIRECTIVES], multi: true}]);
通过下一次更新(RC.5)和模块介绍,您可以为整个模块提供指令。
答案 1 :(得分:0)
如果您使用webpack
打包应用,我认为您可以将其配置为默认包含[ROUTER_DIRECTIVES]
:
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var extractCSS = new ExtractTextPlugin('vendor.css');
var isDevelopment = process.env.ASPNETCORE_ENVIRONMENT === 'Development';
module.exports = {
resolve: {
extensions: [ '', '.js' ]
},
module: {
loaders: [
{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' },
{ test: /\.css/, loader: extractCSS.extract(['css']) }
]
},
entry: {
vendor: [
'bootstrap',
'bootstrap/dist/css/bootstrap.css',
'es6-shim',
'style-loader',
'jquery',
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/http',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router',
'@angular/platform-server',
]
},
output: {
path: path.join(__dirname, 'wwwroot', 'dist'),
filename: '[name].js',
library: '[name]_[hash]',
},
plugins: [
extractCSS,
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }), // Maps these identifiers to the jQuery package (because Bootstrap expects it to be a global variable)
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.DllPlugin({
path: path.join(__dirname, 'wwwroot', 'dist', '[name]-manifest.json'),
name: '[name]_[hash]'
})
].concat(isDevelopment ? [] : [
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false },
minimize: true,
mangle: false // Due to https://github.com/angular/angular/issues/6678
})
])
};