Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从节点 js 创建一个 plist。将整个请求正文转换为 plist。但是当请求 json 中出现“&”时。plist 转换失败。我该如何解决这个问题。我尝试了替换刺痛 var msg = request.body; msg.replace("&", "&");
var msg = request.body; msg.replace("&", "&");
但这是解决它的好方法。