当前位置:网站首页>ABAP 和json转换的方法
ABAP 和json转换的方法
2022-08-02 08:34:00 【ki_reikun】
DATA: lv_json TYPE string. "返回参数
DATA: lv_response TYPE string.
lv_json = /ui2/cl_json=>serialize( data = es_return "ABAPj结构或内表
compress = abap_true
pretty_name = /ui2/cl_json=>pretty_mode-camel_case ).
/ui2/cl_json=>deserialize( EXPORTING json = lv_response "json串
pretty_name = /ui2/cl_json=>pretty_mode-camel_case CHANGING data = ls_data ).“ABAP结构,可以定义出具体的结构,也可以用 TYPE REF OF DATA,用指针的方法去读值
边栏推荐
猜你喜欢
随机推荐
那些年我们踩过的 Flink 坑系列
In a recent build figure SLAM, and locate the progress
Ansible learning summary (11) - detailed explanation of forks and serial parameters of task parallel execution
【C】关于柔性数组.简要的谈谈柔性数组
Jenkins--基础--07--Blue Ocean
UVM信息服务机制
Flink 监控指南 被动拉取 Rest API
Technology Cloud Report: To realize the metaverse, NVIDIA starts from building an infrastructure platform
Codeforces Round #811 (Div. 3)无DF
Biotinyl Cystamine | CAS: 128915-82-2 | biotin cysteamine
OneNote 教程,如何在 OneNote 中创建更多空间?
新起点丨MeterSphere开源持续测试平台v2.0发布
PyQt5(一) PyQt5安装及配置,从文件夹读取图片并显示,模拟生成素描图像
抓包工具Charles修改Response步骤
EPSANet: An Efficient Pyramid Split Attention Block on Convolutional Neural Network
What is the function of the import command of the page directive in JSP?
Three types of [OC learning notes] Block
深度学习汇报(4)
Bigder:41/100生产bug有哪些分类
C语言_条件编译









