5

我需要使用 node.js 获得屏幕分辨率,但以下代码不起作用。

var w = screen.width;
var h = screen.height;

这也行不通。

var w = window.screen.width;
var h = window.screen.height;

有人知道如何使用 node.js 获得屏幕分辨率吗?谢谢你。

4

5 回答 5

5

现在有一个通过 npm 的 screenres 模块:

https://www.npmjs.com/package/screenres

于 2015-07-23T21:06:16.343 回答
0

您应该在客户端 JavaScript 代码中检索window.screen.widthand并将该信息通过 AJAX、WebSocket、表单数据等发送到服务器端 Node.js 应用程序。window.screen.height

例如:

(function(w) {
    $.ajax({
        type: 'POST',
        url: '/echo/json',
        data: {
            w: w.screen.width,
            h: w.screen.height
        },
        success: function() {
            console.log(arguments);
        },
        dataType: 'json'
    });
})(window);

这很常见,与服务器端技术无关。无论您在后端使用什么(Node.js、Python、Ruby、PHP、Java、ASP.NET 等),您都应该将数据从客户端发送到服务器,因为服务器不处理用户的浏览器直接。

于 2013-09-24T18:33:14.227 回答
0

我解决了这个问题phantomJS

安装phantomJS

sudo apt-get install phantomjs

创建 app.js 文件:

var w = screen.width;
var h = screen.height;

console.log(w+"x"+h);

phantom.exit();

执行:

phantomjs app.js

返回:

1366x768
于 2014-02-27T17:31:17.170 回答
0

这有点矫枉过正,但我​​发现的节点模块不再起作用,而且它也不能处理多个显示:

npm install nightmare

然后,如果您想要例如外部显示器的大小和坐标(如果有):

const getBounds = async () => {
  const nm = new Nightmare({
    webPreferences: {
      nodeIntegration: true,
    },
  });
  const bounds = nm
    .goto('about:blank')
    .evaluate(() => {
      const electron = require('electron');
      const displays = electron.screen.getAllDisplays()
      const display = displays.find((d) => d.bounds.x !== 0 || d.bounds.y !== 0) || displays[0];
      return display.bounds;
    }).end();
  return bounds;
};
于 2018-05-04T12:14:43.617 回答
0

使用screenz

const { width, height } = require("screenz");

console.log(width);
//=> 1920

console.log(height);
//=> 1080
于 2020-02-13T07:41:34.387 回答