我在使此查询开始工作时遇到问题。它运行,但是什么也没有创建。没有CSV档案。任何有关如何解决它的想法将不胜感激!
async setCurrentAccount(id: string) {
const password = await AccountHandler.getPasswordFromManager(id);
const body = {password: password};
return this.httpClient.post(environment.localApi + '/accounts/' + id, body);
}
答案 0 :(得分:0)
sticky bit发表了评论,但没有给出答案,所以我写这个答案是为了将来的观众。
该查询引发语法错误,因为您使用的是“
字符而不是标准的"
字符。您应该将“字符”更改为“。
此外,字符串文字应使用'
个字符而不是"
个字符表示。