我正在尝试发送一些参数以设置为html页面的输入值。参数之一是密码字段,我需要以某种方式传递该值,该值在浏览器的开发人员模式下无法读取。 我正在使用把手来渲染我的html页面。 我的渲染代码部分是这样的:
app.get('/config', verifyToken,(req, res)=> {
console.log('got /config data');
res.render('config',{
address: config.address,
port: config.port,
username: config.username,
password: config.password,
})
我的html页面类似于以下代码:
<input class="long-input" value={{password}} type="password" id="password">
有什么解决方案可以确保值的安全性,使其无法在开发模式下读取?