Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 javascript 中为 JSON 创建智能感知模板?在我的应用程序的客户端/javascript 部分工作时获得一些 IDE 帮助会很酷。
我发现这是一个可行的解决方案:
var json = null; // Replace with actual JSON when ready. var fakeyJSONIntellisense = json || { key: null, value: null };
这为智能感知提供了一些可以使用的东西。只需将json变量替换为生产中的实际 JSON,就可以了。
json