如何使用 Apache Cordova 调用 wcf service/Web 服务
How to call a wcf service/Web services using Apache Cordova
关于这个问题我浏览了很多,但找不到解决方案。这里的问题是,我想使用 Apache Cordova 和 Visual Studio 连接到 wcf。
因此,如果有人找到合适的工作解决方案,请 post link
看来你可以在 cordova wit JQuery 中做到这一点。
看
Calling Cross Domain WCF service using Jquery/Javascript
为此,WCF-Services 必须具有属性
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
和获取数据的Service-Methods必须用
修饰
[WebGet(ResponseFormat = WebMessageFormat.Json)]
但首先,我要检查本文中提供的代码
和 post 结果在这里。
关于这个问题我浏览了很多,但找不到解决方案。这里的问题是,我想使用 Apache Cordova 和 Visual Studio 连接到 wcf。 因此,如果有人找到合适的工作解决方案,请 post link
看来你可以在 cordova wit JQuery 中做到这一点。 看 Calling Cross Domain WCF service using Jquery/Javascript
为此,WCF-Services 必须具有属性
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
和获取数据的Service-Methods必须用
修饰[WebGet(ResponseFormat = WebMessageFormat.Json)]
但首先,我要检查本文中提供的代码