使用简单的js提示符和node-to-electron应用程序

ylamdve6  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(423)

我有一个被电子包裹的有Angular 的应用程序。另外,我使用node.js获取mysql数据,并通过electron将其交给angularjs。在我的项目中,没有稳定的数据库,所以我必须从客户端更改数据库凭据,它应该为特定的客户端保留。
就像我有这些默认凭据:

{ 
    "host":"localhost", 
    "username":"root",
    "password":"123",
    "database":"mydata"
}

现在,当我将这个应用程序移动到客户机时,首先应用程序尝试使用默认凭据连接到db,如果失败,它应该向用户请求新的凭据,并且应该保存它(可能作为json文件!)。
我试着从npm提示,它的工作只是与命令行,我想在电子建设应用程序提示对话框!我怎样才能做到?

mwg9r5ms

mwg9r5ms1#

您可以在节点文件中使用它。
命令:

npm install electron-prompt

代码:

const prompt = require('electron-prompt');

prompt({
    title: 'Prompt example',
    label: 'URL:',
    value: 'http://example.org',
    inputAttrs: { // attrs to be set if using 'input'
        type: 'url'
    },
    type: 'select', // 'select' or 'input, defaults to 'input'
    selectOptions: { // select options if using 'select' type
        'value 1': 'Display Option 1',
        'value 2': 'Display Option 2',
        'value 3': 'Display Option 3'
    }
})
.then((r) => {
    console.log('result', r); // null if window was closed, or user clicked Cancel
})
.catch(console.error);

相关问题