NativeScript 中的 SOAP Web 服务
SOAP Web Services in NativeScript
我是 nativescript 应用程序开发的新手,我想在 nativescript 中使用 SOAP web 服务,即如何在 nativescript 中实现 SOAP 请求和响应。请给我建议,没有找到任何实现 SOAP 的方法,所有搜索结果都在 JavaScript 代码中实现。
我确实打开了 github 个问题,请检查 - https://github.com/NativeScript/NativeScript/issues/2284
谢谢:)
好吧,他们没有内置肥皂处理。但是,您可以通过几个步骤让自己拥有。
NativeScript 内置了 http 请求,XMLHttpRequest 和 Fetch;这意味着您可以从任何服务 url 查询和接收您想要的数据。 http://docs.nativescript.org/api-reference/modules/http.html, https://docs.nativescript.org/cookbook/fetch, http://docs.nativescript.org/cookbook/http
此外,他们是一个名为 nativescript-apiclient 的第三方插件,可以更轻松地处理带有更改参数的 http 请求。 (即 http://somewhere/getdata/{token}/{data} where you can just pass in a token and data value...) See http://plugins.nativescript.rocks 用于不同的可用插件。
NativeScript 内置了一个 XML 解析器,Soap 响应通常基于 XML。因此,您可以轻松实例化 xml 引擎来解析您的 soap 请求 (http://docs.nativescript.org/cookbook/xml-parser)
我是 nativescript 应用程序开发的新手,我想在 nativescript 中使用 SOAP web 服务,即如何在 nativescript 中实现 SOAP 请求和响应。请给我建议,没有找到任何实现 SOAP 的方法,所有搜索结果都在 JavaScript 代码中实现。
我确实打开了 github 个问题,请检查 - https://github.com/NativeScript/NativeScript/issues/2284 谢谢:)
好吧,他们没有内置肥皂处理。但是,您可以通过几个步骤让自己拥有。
NativeScript 内置了 http 请求,XMLHttpRequest 和 Fetch;这意味着您可以从任何服务 url 查询和接收您想要的数据。 http://docs.nativescript.org/api-reference/modules/http.html, https://docs.nativescript.org/cookbook/fetch, http://docs.nativescript.org/cookbook/http
此外,他们是一个名为 nativescript-apiclient 的第三方插件,可以更轻松地处理带有更改参数的 http 请求。 (即 http://somewhere/getdata/{token}/{data} where you can just pass in a token and data value...) See http://plugins.nativescript.rocks 用于不同的可用插件。
NativeScript 内置了一个 XML 解析器,Soap 响应通常基于 XML。因此,您可以轻松实例化 xml 引擎来解析您的 soap 请求 (http://docs.nativescript.org/cookbook/xml-parser)