我想添加一些数据并更改API响应的结构。他们的任何服务是否支持此功能?例如:
我有以下API响应:
[
{"text-message": "Welcome to our store!"},
{"text-message": "How can I help you?"}
]
我希望将其更改为:
[
{"text": "Welcome to our store!"},
{"text": "How can I help you?"}
]
答案 0 :(得分:0)
使用Array map:http://php.net/manual/function.array-map.php
,这些事情非常简单...或JavaScript版本:https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map
例如(使用JS):
C:/Users/Rachana/workspace/SPACEOM/src/com/srishti/space_om/SPACE_Functions.java