- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这是我的 main.js,我从这个文件生成一个我需要的 exe 文件。事情是这样的,我需要添加一个防止缩放的保护,在文档中它说你可以通过添加 Webframe 来做到这一点。要重新渲染的组件,但我似乎无法找到重新渲染器的位置。我的应用程序基本上是主要读取的 main.js 和 index.html,我试图将它放入 index.html 的脚本标记中,但没有成功。请帮忙
const electron = require('electron')
// Module to control application life.
const app = electron.app
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow
const path = require('path')
const url = require('url')
// Keep a global reference of the window object, if you don't, the window
will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({width: 1820, height: 1080, transparent:true,
resizable:false, autoHideMenuBar:true, frame:false })
mainWindow.setFullScreen(true);
// and load the index.html of the app.
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
//Accessing the Dev tools
//mainWindow.webContents.openDevTools();
// mainWindow.webContents.on('devtools-opened', () => {
// setImmediate(() => {
// do whatever you want to do after dev tool completely opened here
// mainWindow.focus();
// });
//})
// Open the DevTools.
mainWindow.webContents.openDevTools()
// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
const {webFrame} = require('electron')
webFrame.setZoomLevelLimits(1,1);
webFrame.
console.log(webFrame)
if (mainWindow === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
最佳答案
我遇到了同样的困惑。渲染器进程是运行您的站点/应用程序的代码,因此您的 index.html 文件或任何其他应用程序 js 文件。我能够将以下内容放入 index.html 并获得我正在寻找的结果。
<script type="text/javascript">
const webFrame = require('electron').webFrame;
webFrame.setZoomFactor(1);
webFrame.setZoomLevelLimits(1, 1);
webFrame.setVisualZoomLevelLimits(1, 1);
webFrame.setLayoutZoomLevelLimits(0, 0);
</script>
关于javascript - 如何在 Electron 渲染器进程中设置 webFrame? - Electron ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46550597/
由于要在Webview中加载远程内容,因此我添加了 contextIsolation 。 使用预加载脚本内部的webFrame.executeJavascript(...),如何将无法序列化的对象传递
是否可以手动创建WebDataSource对象,然后将创建的对象设置为webFrame对象的数据源?我似乎无法在 WebFrame 类上找到允许设置数据源的方法。目标是异步预加载网页,而不必一次在 W
我正在尝试使用 Electron 的 webFrame.executeJavaScriptInIsolatedWorld方法,但我收到一个错误,说它不是函数。我正在尝试在 webview 的预加载脚本
我正在学习 ObjC 和 cocoa dev,并且遇到了一个真正的“难题”。在用尽谷歌之后,我恭敬地戴上我的绝望帽子并向您展示: 一个类和一个 View Controller : “内容窗口”类导入
我正在编写一个 Cocoa 应用程序,我想在 Webkit View 中显示一些数据。数据是我在内部生成的 HTML。不过,它来自缓慢的计算,因此我将构建一个缓冲区(现在在 GCD 队列中)。 Web
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
众所周知,当我们从 safari 的网页加载框架时,我们会调用 webkit 非正式协议(protocol)的委托(delegate)方法(WebFrameLoadDelegate): webView
这是我的 main.js,我从这个文件生成一个我需要的 exe 文件。事情是这样的,我需要添加一个防止缩放的保护,在文档中它说你可以通过添加 Webframe 来做到这一点。要重新渲染的组件,但我似乎
我目前正在为我们的网站实现一个移动应用程序,该应用程序使用 Ruby on Rails 和 Devise。首先,这里的想法是创建一个移动登录表单,在成功登录后打开一个经过身份验证的 Web 框架,并允
所以,我有一堆 HTML 存储在 SQLite 数据库中,它们之间来回链接。当用户单击链接时,需要通过从数据库中提取适当的 HTML 来处理该请求。这可能导致需要加载图像,这些图像也存储在数据库中(这
我使用下面的代码来获取 web View 加载后的 html 值,并能够获取字符串中的响应 - (void)webView:(WebView *)sender didFinishLoadForFram
我正在牛仔网络服务器上使用氮气网络框架开发一个应用程序。当我通过 http 运行服务器时,它运行良好。现在在生产中,应用程序必须在 https 上运行。 修改了nitrogen的etc目录下的cowb
我正在开发一个使用 WebView 来显示其大部分内容的项目。内容是从我没有编写且无法控制的磁盘上的 HTML 文件加载的。我希望能够将自定义 CSS 样式应用于加载到 View 中的每个页面。为此,
我正在开发一个具有以下配置的 ionic 项目: Cordova :6.3.1节点:6.10.3 ionic :2.1.4mac os sierrax代码8.3.2 在 iPhone 6s 10.3
我是一名优秀的程序员,十分优秀!