如何在mongodb中将数字类型转换为字符串类型

时间:2019-05-16 12:54:20

标签: node.js mongodb mongoose

在使用mongoose将mongodb中的对象值从Number转换为String时,我遇到了问题,如果我尝试将其更改为String类型,它将保存而没有任何错误,但是当我console.log class MySpider(scrapy.Spider): def parse(self, res): with open(your_file_path, 'w') as f: f.write(res.body) 保存数据时仍显示typeof。另外,如果我将值更改为字符串,则会变成字符串,例如Number会引发错误,(将数字转换为数字失败)。但是用户数据已经存储在数据库中,我想将所有内容都转换为String类型。

st.bankaccnum = "you are"

0 个答案:

没有答案