如何使用 nuSOAP 在 PHP Web 服务中返回数据集(取决于我的输入查询)?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过将数据集(即动态查询的结果)转换为 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