Eclipse JavaScript Editor: content assist for js files, autocompletion(Eclipse JavaScript 编辑器:js 文件的内容辅助,自动完成)
问题描述
我正在尝试将 Eclipse(带有 JavaEE 和 Web 开发插件)作为 JavaEE/GoogleAppEngine IDE.在 HTML 编辑器中,如果我将 <script ... src="..."/>
放入 <head>
我会自动获得 JavaScript 的内容辅助引用的文件.我想知道是否可以在 JavaScript 编辑器中获取其他 JavaScript 文件(例如 jQuery 或自制 js 库)的内容辅助.
I'm trying Eclipse (with JavaEE and Web Development plugins) as a JavaEE/GoogleAppEngine IDE. In HTML editor if I put a <script ... src="..." />
in <head>
I automatically get content assist for JavaScript in the referenced file. I was wondering if it was possible to obtain content assist for other JavaScript files (e.g. jQuery or homebrew js library) inside JavaScript editor.
推荐答案
我刚刚想通了如何在Eclipse JavaScript 编辑器(不使用Aptana 插件)中获取js 内容辅助:
I just figured out how to obtain js content assist in Eclipse JavaScript editor (without Aptana plugins):
如果项目类型本身不包含 JavaScript 支持:打开 Web(或 JavaScript)透视图,右键单击项目并选择 Web 开发支持 > 添加 JavaScript 支持(如果 JavaScript 支持已经存在,这不会有什么坏处)
If the project type doesn't natively contain JavaScript Support: open Web (or JavaScript) perspective, right-click on the project and select Web Development Support > Add JavaScript Support (this won't hurt if JavaScript support is already present)
然后在项目中右键单击 JavaScript Support 并选择 Properties,在 JavaScript 部分转到 JavaScript 库,然后选择 Source 选项卡:在这里您可以添加文件夹和当前项目的内容助手要扫描的文件
then right-click JavaScript Support within the project and select Properties, in the JavaScript section go to JavaScript library and then select Source tab: here you can add folders and files to be scanned by content assist for the current project
在 Aptana Studio 中(作为一个 Eclipse 插件,但我想独立版本几乎相同):打开任何 js 或 html 文件,显示 References 窗口(或打开Eclipse 中的 Aptana 透视图)和拖放 js 文件添加到 JavaScript 范围(可以使用不同的 JavaScript 文件和资源构建和激活不同的范围配置文件:只需单击窗口中的 添加配置文件工具栏)
In Aptana Studio (as an eclipse plugin but I suppose the standalone version is almost the same): open any js or html file, show References window (or open Aptana perspective in eclipse) and drag-drop js files you want to add to JavaScript scope (it is possible to build and activate different scope profiles with different JavaScript files and resources: just click add profile in the window toolbar)
这篇关于Eclipse JavaScript 编辑器:js 文件的内容辅助,自动完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eclipse JavaScript 编辑器:js 文件的内容辅助,自动完成
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01