Loopback MongoDB 连接器问题
Issue with Loopback MongoDB Connector
我在 Mongodb 密码中使用特殊字符 $。
这是我的连接器的样子
{
"name": {
"host": "using ip here",
"port": 27017,
"url": "",
"database": "",
"password": "example123$",
"name": "name",
"user": "username",
"connector": "mongodb"
}
}
错误
无法初始化连接器 "mongodb": 密码包含非法的未转义字符
有什么方法可以在 Loopback 连接器中使用特殊字符。
Try with %24
. ie example123%24
%24
是$
的编码值
const enc = encodeURIComponent('$')
console.log('Encoded Value :', enc)
请查看环回问题 #3764 Github。
我在 Mongodb 密码中使用特殊字符 $。
这是我的连接器的样子
{
"name": {
"host": "using ip here",
"port": 27017,
"url": "",
"database": "",
"password": "example123$",
"name": "name",
"user": "username",
"connector": "mongodb"
}
}
错误 无法初始化连接器 "mongodb": 密码包含非法的未转义字符
有什么方法可以在 Loopback 连接器中使用特殊字符。
Try with
%24
. ieexample123%24
%24
是$
const enc = encodeURIComponent('$')
console.log('Encoded Value :', enc)
请查看环回问题 #3764 Github。