如何使用 WSDL 实用程序生成的 JavaScript 类?
我使用 Visual Studio 的 WSDL 实用程序从 WSDL 生成 JavaScript 中的类。
wsdl /o:SomeClasses.js /l:js https://SomeCompany.com/SomeService?WSDL
输出包含如下所示的类(在 JavaScript 中):
public System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.0.30319.1") System.SerializableAttribute() System.Diagnostics.DebuggerStepThroughAttribute() System.ComponentModel.DesignerCategoryAttribute("code") System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:some.company")
class SomeUser {
private var domainNameField : System.String;
private var userNameField : System.String;
///<remarks/>
public final function get domainName() : System.String {
return this.domainNameField;
}
public final function set domainName(value : System.String) {
this.domainNameField = value;
}
///<remarks/>
public final function get userName() : System.String {
return this.userNameField;
}
public final function set userName(value : System.String) {
this.userNameField = value;
}
}
Is it possible to write OOP JavaScript 利用这些类?如果是的话,语法、示例等是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您为 Web 服务描述指定 JS 语言时语言工具,您指定的不是 JavaScript,而是 JScript。 InternetExplorer 甚至不能完全理解 JScript,而是 JScript.NET。
JScript.NET 是一种基于 JScript 的服务器端脚本语言,但具有附加功能 - 仅在服务器端可用 - 例如 class 您在发布的代码中获得了该类。
您应该寻找其他生成 JavaScript 代码的方法,也许可以使用 Wsdl2js< /a> 或 使用 JQuery 执行 WS 调用。您不能在 InternetExplorer 中使用 Wsdl.exe 生成的代码,因为 InternetExplorer 仅支持旧的 JScript 语言(非 IE 浏览器甚至不支持)。
When you specify the JS language for the Web Services Description Language Tool, you are NOT specifying JavaScript, but JScript. It's not even JScript that InternetExplorer can fully understand, it's JScript.NET.
JScript.NET is a server side scripting language based on JScript but with added features - available only on the server side - like the class you've got in the code you posted.
You should look for other ways of generating JavaScript code, maybe with a tool like Wsdl2js or performing your WS call with JQuery. You can't use the Wsdl.exe generated code inside InternetExplorer as InternetExplorer only supports the old JScript language (and non IE browsers don't even support that).