提问人:Kingsley soo 提问时间:10/4/2023 最后编辑:rickhg12hsKingsley soo 更新时间:10/4/2023 访问量:42
VS Code 粘贴问题,序列搞砸了
VS Code Paste Problem, the sequence was messed up
问:
当我尝试将VS code MongoDB shell中的以下代码粘贴到终端时,整个序列都搞砸了,当我将其粘贴到另一个地方时,格式应该是正确的,并且序列都很好
db.misCourse.insert([
{title: "MongoDB Overview",description: "MongoDB is no SQL database",by: "MongoDB Tutorial",url: "http://www.mongodb.com",tags: ["mongodb", "database", "NoSQL"],likes: 100},
{title: "NoSQL Database",description: "NoSQL database doesn't have tables",by: "MongoDB Tutorial",url: "http://www.mongodb.com",tags: ["mongodb", "database", "NoSQL"],likes: 20,comments: [
{user:"user1",message: "My first comment",dateCreated: new Date(2020,11,10,2,35),like: 0}]} ])
当我尝试将 VS 代码中的以下代码粘贴到终端时,所有序列都搞砸了,当我将其粘贴到其他地方时,格式应该是正确的,序列都很好,我应该怎么做才能解决这个粘贴问题?
答: 暂无答案
评论