Jetbrain 系列 IDE 使用笔记

标签: 工具 配置 发布于:2020-02-17 22:58:00 编辑于:2022-11-15 12:10:06 浏览量:31493

概述

目前主要使用的 Jetbrain 系列 IDE 有:

  1. Web:WebStorm
  2. Python:PyCharm
  3. Java:IDEA
  4. Android:Android Studio
  5. Go:GoLand

在校学生凭 edu 邮箱申请许可

快捷键

  • Ctrl + Alt + L :整理代码
  • Alt + Enter :万能键
  • Shift + Shift: 搜索
  • Shift+Enter:另起一行
  • Ctrl+Shift+Enter:向上另起一行
  • Ctrl+J:插入常用代码
  • Ctrl+Q:查询文档
  • Ctrl+D:复制当前行
  • Ctrl+R:替换

特殊注释

  • TODO
  • FIXME

常见问题

unresolved function or method 无法解析的函数或方法

问题描述

使用某些库如 Express.js 时 WebStorm 无法识别某些函数

问题原因

这些函数是在运行时动态添加的,WebStorm 不能通过静态分析解析这些函数

解决方法

为 WebStorm 安装此库的 TypeScript 定义即可,方法是单击库的名字,按 Alt+Enter,然和选择安装 TypeScript 定义即可,如下图: image.png

WebStorm 不能识别 jQuery 的 $ 符号

  1. First press CTRL + ALT + S and go to settings.
  2. Then click from the menu Languages & Frameworks
  3. Select JavaScript from the section below and select Libraries
  4. In the open menu on the right, click on the Download button and select jquery from the list.
  5. Download it and apply. It is done.

解决方法来自于: https://stackoverflow.com/questions/37038850/why-intellij-idea-doesnt-recognize-the-dollar-operator-of-jquery

未经允许,禁止转载,本文源站链接:https://iamazing.cn/