使用简单的js提示与节点到电子应用程序

时间:2018-06-15 12:03:00

标签: javascript mysql node.js electron prompt

我有一个由电子包裹的角度应用程序。另外,我使用node.js获取MySQL数据并通过电子将其提供给angularJs。 在我的项目中,没有稳定的数据库,所以我必须从客户端更改数据库凭据,它应该保留给特定的客户端。

就像我有这些默认凭据一样:

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

现在,当我将此应用程序移动到客户端时,首先应用程序尝试使用默认凭据连接到db,如果失败,它应该询问用户是否有新凭据并且应该保存(可能是json文件!)。

我尝试从npm提示,它只使用命令行工作正常,我想在电子构建应用程序中提示对话框!我怎样才能实现?

1 个答案:

答案 0 :(得分:2)

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

命令:

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);