作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是关于 Visual Studio 2012 版的。请在回答时牢记这一点...
我想知道如何让智能感知识别构造函数接受作为参数的 JSON 对象的结构。
假设你有这样的事情:
somethingObject = function(blueprint) {
this.target = blueprint.target;
this.propertyFromBlueprintNested = blueprint.nestedSomething.thePropertyIwant;
}
在 Visual Studio 中实例化一个新的 somethingObject 时,智能感知可以在您编写时识别出 JSON 结构。考虑一下:
var s = new somethingObject({
//<< Visual studio would suggest target, or nestedSomething here
}
我愿意考虑使用另一个 IDE 来正确地使用 JavaScript 执行此类操作。我目前正在评估 JetBrains WebStorm
致建议整形器的人:
这是我得到的:
(我会在这里放一张图片,不过我需要更多的声誉:-(
最重要的是,该属性与您的属性不同。
我想我可能需要放弃它。
最佳答案
Jetbrains Resharper支持这个:version 8 EAP (即将发布)
关于javascript - 如何让智能感知了解 JSON 参数的结构(visual studio 2012),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17090384/
我是一名优秀的程序员,十分优秀!