1. 程式人生 > >VS Code 運行html文件

VS Code 運行html文件

RoCE -i eve rip pil out pattern clas use

用VS Code編寫html文件,想在VS Code中直接打開運行,配置如下:

配置tasks.json

  1. 打開VS Code,點擊“終端”,選擇“配置任務”。
    技術分享圖片

  2. 選擇“使用模板創建tasks.json文件”。
    技術分享圖片

  3. 選擇“Others”。
    技術分享圖片

  4. tasks.json新建完成,默認如下圖:
    技術分享圖片

  5. 修改tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "在Chrome中運行",
            "type": "process",  // [shell,process]
            "command": "Chrome",
            "args": ["${file}"],
            "windows": {
                "command": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"
            },
            "group": "build",
            "presentation": {
                // Reveal the output only if unrecognized errors occur.
                "reveal": "never"  //[always,never,silent]
            },
            // Use the standard MS compiler pattern to detect errors, warnings and infos
            "problemMatcher": "$msCompile"
        }
    ]
}

運行任務

選中需要運行的html文件,按住Ctrl+Shift+B,選擇“在Chome中運行”,即可。
技術分享圖片

文章出處:https://allanhao.com/2018/09/25/vscode-run-html/

VS Code 運行html文件