Loopback MongoDB连接器问题

问题描述 投票:0回答:2

我在Mongodb密码中使用特殊字符$。

这就是我的连接器的样子

 {
"name": {
"host": "using ip here",
"port": 27017,
"url": "",
"database": "",
"password": "example123$",
"name": "name",
"user": "username",
"connector": "mongodb"
 }
}

错误无法初始化连接器“mongodb”:密码包含非法的非转义字符

有没有办法在Loopback连接器中使用特殊字符。

node.js strongloop
2个回答
0
投票

尝试使用%24。即example123%24

%24$的编码值

const enc = encodeURIComponent('$')
console.log('Encoded Value :', enc)

0
投票

请在loopback Github上查看问题#3764。

https://github.com/strongloop/loopback/issues/3764

© www.soinside.com 2019 - 2024. All rights reserved.