まず、このプロジェクトは、Visual Studio 2015 用の有名な .Net Core および ng2 テンプレートに基づいていますVS 2015 テンプレート チュートリアルへのリンク
このテンプレートは非常に優れており、すべてが期待どおりに機能しています。Webpack/HMR も機能しており、.html または .ts ファイルを変更するとすぐに変更を確認できます。
ただし、非常に古いバージョンのライブラリを使用しています。この問題は、すべてのライブラリを最新バージョン (WebPack から 2.2.1) にアップグレードすることにしたときに始まりました。このアップグレードの行程で重大な重大な変更があったため、非常に多くのエラーが発生しました。私はほぼすべてを整理し、この最後の問題を除いて、通常どおりアプリを起動して実行しました.
を使用して変更をロードしなくなりましたHotModuleReplacement (HMR)
。ブラウザで更新 (F5) すると、すべての変更がページに反映されます。
ここで、変更を認識し、最新の (正しい) html コードをコンパイルして返したことがわかりますが、ページにロードすることはできませんでした。と言い続けているSelector 'app' did not match any elements.
パッケージ.json
"dependencies": {
"@angular/common": "^2.4.8",
"@angular/compiler": "^2.4.8",
"@angular/core": "^2.4.8",
"@angular/forms": "^2.4.8",
"@angular/http": "^2.4.8",
"@angular/platform-browser": "^2.4.8",
"@angular/platform-browser-dynamic": "^2.4.8",
"@angular/platform-server": "^2.4.8",
"@angular/router": "^3.4.8",
"@types/node": "^7.0.5",
"angular2-platform-node": "^2.1.0-rc.1",
"angular2-universal": "^2.1.0-rc.1",
"angular2-universal-polyfills": "^2.1.0-rc.1",
"aspnet-prerendering": "^2.0.3",
"aspnet-webpack": "^1.0.27",
"bootstrap": "^3.3.7",
"css": "^2.2.1",
"css-loader": "^0.26.1",
"es6-shim": "^0.35.1",
"expose-loader": "^0.7.3",
"extract-css-block-webpack-plugin": "^1.3.0",
"extract-text-webpack-plugin": "^2.0.0-beta",
"file-loader": "^0.10.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"preboot": "^4.5.2",
"raw-loader": "^0.5.1",
"rxjs": "^5.2.0",
"style-loader": "^0.13.1",
"to-string-loader": "^1.1.5",
"ts-loader": "^2.0.1",
"typescript": "^2.2.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-externals-plugin": "^1.0.0",
"webpack-hot-middleware": "^2.17.0",
"webpack-merge": "^3.0.0",
"zone.js": "^0.7.7"
}
よく知られている angular-universal の問題については、既に 2 つの回避策の ts ファイルをコピーし、boot-server ファイルと boot-client ファイルの両方に追加しました。
webpack.config.vendor.js
ここで提案されているようaspnet-prerendering
に、ベンダー エントリに含めました。
var isDevBuild = process.argv.indexOf('--env.prod') < 0;
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
resolve: {
extensions: [ '*', '.js' ]
},
module: {
loaders: [
{ test: /\.(png|woff|woff2|eot|ttf|svg)(\?|$)/, loader: 'url-loader?limit=100000' },
{ test: /\.css(\?|$)/, loader: ExtractTextPlugin.extract("css-loader") }
]
},
entry: {
vendor: [
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/http',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router',
'@angular/platform-server',
'angular2-universal',
'angular2-universal-polyfills',
'bootstrap',
'bootstrap/dist/css/bootstrap.css',
'es6-shim',
'es6-promise',
'jquery',
'zone.js',
'aspnet-prerendering'
]
},
output: {
path: path.join(__dirname, 'wwwroot', 'dist'),
filename: '[name].js',
library: '[name]_[hash]',
},
plugins: [
//extractCSS,
new ExtractTextPlugin({
filename: "vendor.css",
allChunks: true
}),
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.OccurrenceOrderPlugin(),
new webpack.DllPlugin({
path: path.join(__dirname, 'wwwroot', 'dist', '[name]-manifest.json'),
name: '[name]_[hash]'
})
].concat(isDevBuild ? [] : [
new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false } })
])
};
webpack.config.js
var isDevBuild = process.argv.indexOf('--env.prod') < 0;
var path = require('path');
var webpack = require('webpack');
var nodeExternals = require('webpack-node-externals');
var merge = require('webpack-merge');
var allFilenamesExceptJavaScript = /\.(?!js(\?|$))([^.]+(\?|$))/;
// Configuration in common to both client-side and server-side bundles
var sharedConfig = {
resolve: { extensions: [ '*', '.js', '.ts' ] },
output: {
filename: '[name].js',
publicPath: '/dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
},
module: {
loaders: [
{ // TypeScript files
test: /\.ts$/,
include: /ClientApp/,
exclude: [/\.(spec|e2e)\.ts$/], // Exclude test files | end2end test spec files etc
loaders: [
'ts-loader?silent=true'
]
},
{ test: /\.html$/, loader: 'raw-loader' },
{ test: /\.css$/, loader: 'raw-loader' },
{ test: /\.(png|jpg|jpeg|gif|svg)$/, loader: 'url-loader', query: { limit: 25000 } }
]
}
};
// Configuration for client-side bundle suitable for running in browsers
var clientBundleConfig = merge(sharedConfig, {
entry: { 'main-client': './ClientApp/boot-client.ts' },
output: { path: path.join(__dirname, './wwwroot/dist') },
devtool: isDevBuild ? 'inline-source-map' : null,
plugins: [
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./wwwroot/dist/vendor-manifest.json')
})
].concat(isDevBuild ? [] : [
// Plugins that apply in production builds only
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin()
])
});
// Configuration for server-side (prerendering) bundle suitable for running in Node
var serverBundleConfig = merge(sharedConfig, {
entry: { 'main-server': './ClientApp/boot-server.ts' },
output: {
libraryTarget: 'commonjs',
path: path.join(__dirname, './ClientApp/dist')
},
target: 'node',
devtool: 'inline-source-map',
externals: [nodeExternals({ whitelist: [allFilenamesExceptJavaScript] })] // Don't bundle .js files from node_modules
});
module.exports = [clientBundleConfig, serverBundleConfig];
boot.server.ts
import 'angular2-universal-polyfills';
import 'zone.js';
import './__workaround.node'; // temporary until 2.1.1 things are patched in Core
import { enableProdMode } from '@angular/core';
import { platformNodeDynamic } from 'angular2-universal';
import { AppModule } from './app/app.module';
//enableProdMode();
const platform = platformNodeDynamic();
import { createServerRenderer, RenderResult } from 'aspnet-prerendering';
export default createServerRenderer(params => {
// Our Root application document
const doc = '<app></app>';
return new Promise<RenderResult>((resolve, reject) => {
const requestZone = Zone.current.fork({
name: 'Angular-Universal Request',
properties: {
ngModule: AppModule,
baseUrl: '/',
requestUrl: params.url,
originUrl: params.origin,
preboot: false,
document: doc
},
onHandleError: (parentZone, currentZone, targetZone, error) => {
// If any error occurs while rendering the module, reject the whole operation
reject(error);
return true;
}
});
return requestZone.run<Promise<string>>(() => platform.serializeModule(AppModule)).then(html => {
resolve({ html: html });
}, reject);
});
});
<app></app>
ページがロードされたときにページ上にあることは非常に明確です。そうしないと、最初からページが読み込まれません。しかし、基になるファイルに変更があると、突然それを見つけることができなくなりました。
boot.client.ts
import 'angular2-universal-polyfills/browser';
import './__workaround.browser'; // temporary until 2.1.1 things are patched in Core
import { enableProdMode } from '@angular/core';
import { platformUniversalDynamic } from 'angular2-universal';
import { AppModule } from './app/app.module';
import 'bootstrap';
// Enable either Hot Module Reloading or production mode
if (module['hot']) {
module['hot'].accept();
module['hot'].dispose(() => { platform.destroy(); });
} else {
enableProdMode();
}
// Boot the application, either now or when the DOM content is loaded
const platform = platformUniversalDynamic();
const bootApplication = () => { platform.bootstrapModule(AppModule); };
if (document.readyState === 'complete') {
bootApplication();
} else {
document.addEventListener('DOMContentLoaded', bootApplication);
}
索引.html
@{
ViewData["Title"] = "Home Page";
}
<app asp-prerender-module="ClientApp/dist/main-server">Loading...</app>
<script src="~/dist/vendor.js" asp-append-version="true"></script>
@section scripts {
<script src="~/dist/main-client.js" asp-append-version="true"></script>
}
このエラーを解決するのを手伝ってもらえますか? ありがとう。
これを Plunkr に載せようとしましたが、.NetCore ファイルを Plunkr にアップロードする方法がわかりません。