Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Visual Studio 和 node.js 进行程序。我想传递一个 URL,并且一些数据占用了 nodejs 中的调试时间。所以请告诉我如何提供这些数据。
首先,你要传递一个 URL 和一些数据,你需要定义一些变量来接受这些值。
然后在其中一个变量上添加断点并开始调试您的程序。当断点命中时,右键单击它以选择Add Watch选项。该变量将在 Watch 窗口中列出其值。
现在您可以在值列的监视窗口中设置变量的值。当您按下 F10/F11 进入下一步时,该变量将使用您在下一行代码的 Watch Window 中设置的值,可以在调试时实现您的要求传递数据。