在Electron应用程序中使用nodejs类

时间:2019-04-02 12:35:39

标签: node.js electron

我用js编写了此类:

'use strict';

const toolbox = require('./toolbox');

module.exports = class OperativeValue {

    constructor(args) {

        const {
            pressure,
            temperature,
            speed,
            density,
            viscosity
        } = toolbox.getValidArgs({
            args,
            required: ['pressure', 'temperature', 'speed', 'density', 'viscosity']
        });

        this.pressure = pressure;
        this.temperature = temperature;
        this.speed = speed;
        this.density = density;
        this.viscosity = viscosity;
    }

}

我尝试在Electron应用程序中使用此对象,但是我有此错误:

  

未捕获的TypeError:V [a] .exec不是函数

jquery-3.3.1.min.js:2

由于电子是一个nodejs框架,我以为我可以在应用程序中使用nodejs元素,但找不到有效的解决方案。

我尝试更改在html文件中包含js文件的方法,但结果是相同的

0 个答案:

没有答案