1.在vs中,用浏览器打开文件
编辑 html 文件时,需要用浏览器打开文件进行调试。这里可以使用 vs code 的 task 功能。
- 按下 F1 ,在弹窗里面搜索 Config Task ,如果之前没有配置过 task ,可以点击模板,创建 task
- 编辑 task 文件,这里 group 选择的 build ,这样 Ctrl + Shift + B 就可以唤出 open in explorer 这个 task 了
{
"version": "2.0.0",
"tasks": [
{
"label": "open in explorer",
"command": "explorer",
"windows": {
"command": "explorer.exe"
},
"group": "build",
"args": [
"${file}"
]
}
]
}