2021-05-14 腾讯云函数调试

参考文章 云函数调试,用vscode插件调试,首先出现下面的错误

cloudbase : 无法加载文件 C:\Users\elikong\AppData\Roaming\npm\cloudbase.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ cloudbase functions:run --debug --name node-app --port 9229
+ ~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [],PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
The terminal process "C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command cloudbase functions:run --debug --name node-app --port 9229" terminated with exit code: 1.

Terminal will be reused by tasks, press any key to close it.

然后百度找到解决方法:打开PowerShell(在小娜里搜就行),输入set-executionpolicy remotesigned,之后选择Y


1.png

接着右键点击目录发现新的错误:


2.png

然后先修改了配置文件cloudbaserc.json,添加地域声明:

"region": "ap-guangzhou",

主要原因是我部署在广州,据说部署上海不需要添加这个
类似:


3.png

然后还是不行,最后发现


4.png

选后面一个框,然后鼠标右键,调试云函数就可以了
历经千难万险总算搞定vscode调试

你可能感兴趣的:(2021-05-14 腾讯云函数调试)