gpt4 book ai didi

mysql - 如何使用nodejs将文件路径插入mysql表

转载 作者:行者123 更新时间:2023-11-29 17:34:20 25 4
gpt4 key购买 nike

我目前正在使用 mutler 将文件上传到服务器。以下是我的查询:

var insertSQL = "INSERT INTO ic_photos (icFrontURL,icBackURL,selfieURL,customer_id) VALUES ('" + frontICPath + "','"+backICPath + "','" + selfiePath + "','" + customerID + "')"; 

Console.log 返回

"INSERT INTO ic_photos (icFrontURL,icBackURL,selfieURL,customer_id) VALUES ('public\images\frontIC_1526709299585_potato.png','public\images\backIC_1526709299595_potato2.jpg','public\images\selfie_1526709299596_potato3.jpg','41')"

但是当它进入mysql表时,它显示以下值:

'publicimagesfrontIC_1526709040516_potato.png'

斜线缺失。当我进行插入查询时如何解决这个问题?

最佳答案

这将用两个反斜杠替换反斜杠。当它插入到表中时,它会变成一个反斜杠

frontICPath = frontICPath.replace(/\\/g, "\\\\");

关于mysql - 如何使用nodejs将文件路径插入mysql表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50422286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com