为什么不能使用 Ctrl+V 或 Ctrl+Shift+V 将 Mongo 命令粘贴到控制台 window 中的 Mongo 提示符中?

Why can't be pasted a Mongo command into a Mongo prompt in a console window by using Ctrl+V or Ctrl+Shift+V?

我想将下面的 Mongo 命令复制并粘贴到 Mongo 命令提示符中Windows 控制台 window。但是,当我尝试使用 Ctrl+VCtrl+Shift+V 粘贴命令时,它没有任何响应。

这是我的 Mongo 命令:

db.newsList.insert({'headline':'Jason Day signs with Bridgestone Golf', 'content':' Twelve-time PGA TOUR winner Jason Day has signed with Bridgestone Golf to use its golf ball.', 'time':new Date(), 'comments':[{ 'userID': ObjectId("507f1f77bcf86cd799439011"), 'time':ISODate("2022-03-02T22:31:55Z"), 'comment': 'Fantistic!'}]})

我希望发生的是在 Mongo 命令提示符下成功将命令粘贴到 运行。

您不能在命令提示符下默认使用 CTRL+SHIFT+C/V。

要启用此选项:

  1. 右键单击命令提示符内的任意位置。
  2. 从那里转到属性。
  3. 在选项选项卡中,有一个'Use CTRL + SHIFT + C/V as Copy/Paste',您应该检查它,然后单击'OK'。