如何在 oracle apex 中将 Content-Type=application/xml 用于 pl/sql 块
Posted
技术标签:
【中文标题】如何在 oracle apex 中将 Content-Type=application/xml 用于 pl/sql 块【英文标题】:How use Content-Type=application/xml in oracle apex for pl/sql block 【发布时间】:2020-06-16 07:30:11 【问题描述】:我想以 xml 格式接收我在请求正文中传输的数据并将其传输到 select 。现在我成功地设法使用 json,但我需要它 xml 。 我的代码:(
DECLARE
te sys_refcursor;
Begin
htp.p('JSON ename = ' || :name);
htt.p('JSON city = ' || :city);
open te for select * from mk_test where name = :name and city = :city;
apex_json.write('teas' , te);
end;
【问题讨论】:
如何在我的代码中获取 xml 正文请求? 【参考方案1】:OWA_UTIL.mime_header('application/xml');
它帮助了我。
【讨论】:
以上是关于如何在 oracle apex 中将 Content-Type=application/xml 用于 pl/sql 块的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Eclipse 中将我的应用程序添加到 Tomcat?
如何在 Eclipse 中将“其他链接器标志”设置为 Xcode?
如何在 Eclipse 中将 checkstyle 降级到 8.40 或 8.41