如何使用 nuSOAP 在 PHP Web 服务中返回数据集(取决于我的输入查询)?

发布于 2024-12-14 16:50:08 字数 103 浏览 2 评论 0原文

我想使用 nuSOAP 在 PHP Web 服务中返回一个数据集(其结果是动态的,因为它取决于我的输入参数)。我如何注册我的返回类型,因为我不知道我的输入查询将产生多少(以及什么类型)列和行。

I want to return a data set (whose results are dynamic as it depends on my input parameters) in a PHP web service, using nuSOAP. How do I register my return type since I do not know how many (and what type of) columns and rows will be resulting from my input query.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2024-12-21 16:50:12

我通过将数据集(即动态查询的结果)转换为 CSV 来使其工作,其中第一条记录具有字段名称,后续记录作为实际记录。现在我可以返回始终是字符串的 CSV,然后在前端将其转换为表格

I got it working by converting the dataset, i.e. the result of my dynamic query, into a CSV with the first record having the names of the fields and the following records as the actual records. Now I can return the CSV which is always going to be a STRING and then convert it into a table at the front end

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文