config.json是一個配置文件,可以幫助我們在應用程序中配置和管理多個用戶。在本文中,我們將介紹如何在config.json中配置多個用戶。
{ "users": [ { "username": "user1", "password": "password1" }, { "username": "user2", "password": "password2" } ] }
在上面的示例中,我們定義了兩個用戶:user1和user2。每個用戶都有一個用戶名和密碼。如果需要添加更多用戶,只需在users數組中添加一個新的對象。
在應用程序中,我們可以使用以下代碼讀取config.json文件并獲取配置信息:
const fs = require('fs'); const config = JSON.parse(fs.readFileSync('config.json', 'utf8')); // 獲取所有用戶 const users = config.users; // 獲取特定用戶的密碼 const user1Password = users.find(user =>user.username === 'user1').password;
這個簡單的代碼片段可以幫助我們在應用程序中獲取用戶列表和特定用戶的密碼。