我想在我的网站上实现一个缩放功能,显示SVG图像。
我看到了这个库github.com/ariutta/svg-pan-zoom
,它提供了我需要的确切功能,
但是,我似乎无法使用angular2,窗口无法访问。
经过一些研究后,我认为我必须将窗口填充到svg-pan-zoom的webpack导出窗口。也许我不是在寻找合适的东西,但我认为只需要导入第三方javascript就需要做很多工作,这真是太神奇了。
我能找到的最好线索是:https://github.com/ariutta/svg-pan-zoom/issues/207
编辑:见答案。
我使用了这个有角度的2 aspnet核心启动项目:https://damienbod.com/2017/01/01/building-production-ready-angular-apps-with-visual-studio-and-asp-net-core/
编辑:实际上就是这个 https://github.com/MarkPieszak/aspnetcore-angular2-universal但是当我发布这篇文章时,分支得到了更新,让我感到困惑
<小时/> 我在这里有这项服务,
SVG-泛zoom.service.ts
import { Injectable } from '@angular/core'
import { isBrowser } from 'angular2-universal';
import * as svgPanZoom from 'svg-pan-zoom';
@Injectable()
export class SvgPanZoomService {
getPanZoom(element: any) {
if (isBrowser) {
svgPanZoom(element);
}
}
}
在这里被称为 map.component.ts
import { Component, AfterViewInit } from '@angular/core';
import { SvgPanZoomService } from '../../injectables/svg-pan-zoom.service';
import { isBrowser } from 'angular2-universal';
@Component({
selector: 'map-full',
template: require('./map.component.html'),
styles: [require('./map.component.css')]
})
export class MapComponent implements AfterViewInit {
constructor(private svgZoom: SvgPanZoomService) {
if (isBrowser) {
this.svgZoom.getPanZoom('#evSvgMap');
}
}
}
<小时/> 我的app.module中
引用了SvgPanZoomService服务
我的package.json中引用了Svg-pan-zoom lib,
最后,我的构建为我提供了2个js文件,main-client.js和vendor.js
我可以浏览main-client.js并看到它引用了svg-pan-zoom,
当我的页面加载时,它出现在我的浏览器源中
但是当涉及到加载它应该做的东西的部分时,我得到这个错误。
An unhandled exception occurred while processing the request.
Exception: Call to Node module failed with error:
Prerendering failed because of error: ReferenceError: window is not defined
at D:\[mystuff]\node_modules\svg-pan-zoom\dist\svg-pan-zoom.js:1493:8
现在我读到我并不打算从一个组件访问窗口,但我对lib调用的内容没有发言权,我在这里读到添加(isBrowser)
应该验证我不会调用这个服务器端(为什么我希望服务器放大这是对的?)
这是我的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: [
{ test: /\.ts$/, include: /ClientApp/, loader: 'ts', query: { silent: true } },
{ test: /\.html$/, loader: 'raw' },
{ test: /\.css$/, loader: 'to-string!css' },
{ test: /\.(png|jpg|jpeg|gif|svg)$/, loader: 'url', 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];
该应用程序然后加载另一个webpack.config.vendor.js
var isDevBuild = process.argv.indexOf('--env.prod') < 0;
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var extractCSS = new ExtractTextPlugin('vendor.css');
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']) }
{ test: require("svg-pan-zoom"),
loader: "imports-loader?window=>window./svg-pan-zoom.js"} // wild try
]
},
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',
'svg-pan-zoom' //i added this, no clue if it's relevant.
//EDIT :Turns out it was important, very much so.
]
},
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(isDevBuild ? [] : [
new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false } })
])
};
我还有2个与webpack.config.js相关的boot-client和boot-server文件,这些文件是服务器和客户端文件打包的说明。
感谢。
答案 0 :(得分:1)
这有效
https://github.com/MarkPieszak/aspnetcore-angular2-universal#universal-gotchas
在Angular 2中构建Universal组件时,有一些事情 请记住。
window
,document
,navigator
和其他浏览器类型 - 在服务器上不存在 - 因此使用它们,或者使用它们的任何库(例如jQuery)都不起作用。你确实有一些选择,如果 你真的需要一些这样的功能:如果您需要使用它们,请考虑将它们仅限于您的客户 并在情境中包装它们。您可以使用注入的Object PLATFORM_ID令牌,用于检查当前平台是否为浏览器 或服务器。
import { PLATFORM_ID } from '@angular/core'; import { isPlatformBrowser, isPlatformServer } from '@angular/common'; constructor(@Inject(PLATFORM_ID) private platformId: Object) { ... } ngOnInit() { if (isPlatformBrowser(this.platformId)) { // Client only code. ... } if (isPlatformServer(this.platformId)) { // Server only code. ... } }
但请记住,如果您正在使用webpack,则需要通过创建两个单独的bundle来分离客户端和服务器端代码,服务器端捆绑包不得包含对您正在使用的客户端javascript库的引用,在这种情况下,svg-pan-zoom调用不存在服务器端的窗口。
这种分离可以通过在webpack.config
中添加如下所示的部分来实现module: { rules: [{test: /svg-pan-zoom/,loader: 'null-loader'}] }
此null-loader需要npm install null-loader --save
更多信息:https://github.com/webpack-contrib/null-loader
一旦您分开了捆绑包,请确保每次调用可能需要window
,document
,navigator
的脚本,我遇到{{1}的问题在if localStorage
块
<小时/> 另一个建议是摆脱服务器端渲染功能,我做了,它适用于此以及随后出现的任何其他客户端相关问题。 https://github.com/MarkPieszak/aspnetcore-angular2-universal#faq---also-check-out-the-faq-issues-label
如何禁用通用/ SSR(服务器端呈现)?
只需在HomeController中注释掉逻辑,然后替换即可 @ Html.Raw(ViewData [&#34; SpaHtml&#34;])只包含你的应用程序root AppComponent标签(&#34; app&#34;在我们的例子中):.
您还可以删除任何isPlatformBrowser / etc逻辑,并删除 boot-server,browser-app.module&amp; server-app.module文件,只需make 确保你的boot-client文件指向app.module。