在尝试使用debugger for chrome时,出现问题
connect econnrefused 127.0.0.1:9222
网上有的教程说使用前先关闭chrome的进程,再调试
但觉得这样好麻烦,那要怎么办呢
首先,按文档准备好环境
vue.js调试准备
这里只以chrome的配置进行说明
lauch.json配置文件中需要添加选项
- 添加runtimeExecutable用于说明chrome.exe文件的所在位置
- 添加userDataDir用于创建临时目录,专门保存调试过程产生的东西
如下图所示
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"runtimeExecutable": "D:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
点击就可以调试,并且目录下会多出一个chrome文件
但缺点是,打开的浏览器是一个独立的,之前安装的插件无法使用
还没找到更好的方法
参考
https://www.zhihu.com/question/46993186
https://juejin.im/post/58c0c2e344d90400697213f2
https://blog.csdn.net/xdcx950288/article/details/80640918
https://segmentfault.com/a/1190000013392459