请问,Electron的Webview是否属于HTML范畴的内容:
我查看w3sschool: Electron - Webview
是直接在html内部写<webview>
:
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<title>Menus</title>
</head>
<body>
<div>
<div>
<h2>We have the website embedded below!</h2>
</div>
<webview id = "foo" src = "https://www.tutorialspoint.com/" style =
"width:400px; height:480px;">
<div class = "indicator"></div>
</webview>
</div>
请问一下:
1、webview是electron的功能还是指的html的功能呢?
2、如果是electron的功能,请问是什么原因让可以在html进行写的呢?是否是指的编译的时候,会把webview标签编译为其他的内容?
electron = node.js + browser
所以在 electron 里显示 webview 是很合理的。对 electron 来说,开一个渲染进程渲染 html 应该是很简单的事情,不需要编译。但它不是标准浏览器的功能。
最后,建议看官方文档来学习。