gpt4 book ai didi

webview - 如何在 Angular2 应用程序中使用 Electron 的

转载 作者:行者123 更新时间:2023-12-03 12:23:53 27 4
gpt4 key购买 nike

我尝试使用 Electon's webview tag在我的 Angular2 应用程序中,但是当我添加绑定(bind)到 Angular2 变量的 src 属性时,会发生以下错误:

Can't bind to 'src' since it isn't a known native property

这是 index.html:
<head>
<!-- cut out stylings, metatags, etc. -->
<script src="../node_modules/zone.js/dist/zone.js"></script>
<script src="../node_modules/reflect-metadata/Reflect.js"></script>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
const electron = require('electron');
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<MainComponent>Loading...</MainComponent>
</body>

这是 systemjs.config.js:
(function(global) {
// map tells the System loader where to look for things
var map = {
'app': 'angular',
'@angular': '../node_modules/@angular',
'angular2-in-memory-web-api': '../node_modules/angular2-in-memory-web-api',
'rxjs': '../node_modules/rxjs'
};
// packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': { main: 'main.js', defaultExtension: 'js' },
'rxjs': { defaultExtension: 'js' },
'angular2-in-memory-web-api': { defaultExtension: 'js' }
};
var ngPackageNames = [
'common',
'compiler',
'core',
'http',
'platform-browser',
'platform-browser-dynamic',
'router',
'router-deprecated',
'upgrade'
];
// Add package entries for angular packages
ngPackageNames.forEach(function(pkgName) {
packages['@angular/'+pkgName] = { main: pkgName + '.umd.js', defaultExtension: 'js' };
});
var config = {
map: map,
packages: packages
};
System.config(config);
})(this);

这是我(想要)在以下位置使用 webview 的 Angular2 组件模板:
<div class="stage-component component">
<webview *ngIf="iFrameUrl" src="{{iFrameUrl}}"></webview>
</div>

如何将 webview 元素引入 Angular2?

最佳答案

如果出现这种情况,请在之前使用“attr”。

<webview *ngIf="iFrameUrl" attr.src="{{iFrameUrl}}"></webview>

关于webview - 如何在 Angular2 应用程序中使用 Electron 的 <webview>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37793412/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com