VS Code运行JS代码报错:code language not supported or defined vscode

解决方法1:

在这里插入图片描述
具体步骤:

  1. 编辑器右下角找到“选择语言模式”
  2. 修改为"自动检测"

在这里插入图片描述
VS Code运行JS代码报错:code language not supported or defined vscode_第1张图片

解决方法2:VS Code运行JS代码报错:code language not supported or defined vscode_第2张图片

具体步骤(需先安装CODE RUNNER扩展):

  1. 设置->搜索"run code"
  2. 下拉找到"Code-runner.executorMapByFileExtension"
  3. 点击"在settings.json种编辑"
  4. 找到"code-runner.executorMapByFileExtension":{}
  5. 在大括号内添加语句 "*.js": "node",注意需在上一行末尾添加逗号,
  6. 保存

VS Code运行JS代码报错:code language not supported or defined vscode_第3张图片
VS Code运行JS代码报错:code language not supported or defined vscode_第4张图片
小tip:运行代码快捷键Ctrl + Alt+ N

你可能感兴趣的:(工具,javascript,visual,studio,code,编辑器)