如何使用ORDS发出POST请求?

时间:2018-05-21 19:54:46

标签: sql json oracle-apex oracle-ords

我想在ORDS application express中插入带有POST请求的新项目。

我创建了这样的处理程序:

enter image description here

然后使用android studio,我使用volley来创建一个JSONObject(同时&请求):

Insert into android_anime (name, genres, season, nb_episode, rating)
Values ('anime5', 'G6', 2, 24, 5)

我也和邮递员一起试过这个请求:

enter image description here

如您所见,我收到错误500,我找不到问题。如果我在SQL命令中执行查询,它可以正常工作:

CREATE TABLE  "ANDROID_ANIME" 
(   "ID" NUMBER, 
"NAME" VARCHAR2(30), 
"GENRES" VARCHAR2(30), 
"SEASON" NUMBER, 
"NB_EPISODE" NUMBER, 
"RATING" NUMBER, 
 CONSTRAINT "ANDROID_ANIME_PK" PRIMARY KEY ("ID")
USING INDEX  ENABLE
)

如何使我的帖子请求有效?

修改

这是表格定义:

preg_match_all('!<th scope="(\b[a-zA-Z]+\b)">(\b[a-zA-Z]+\b)<\/th><td><a href="\/wiki\/(\b[a-zA-Z]+\b)" title="(\b[a-zA-Z]+\b)">(\b[a-zA-Z]+\b)<\/a>!',$result,$cap_matches);
$cap_name = array_values(array_unique($cap_matches[0]));
echo $cap_name[0];

1 个答案:

答案 0 :(得分:1)

我对表格定义的猜测。

SQL> create table android_anime(
  2  name varchar2(200),
  3  genres varchar2(200),
  4  season number,
  5  nb_episode number,
  6* rating number);

Table ANDROID_ANIME created.

从未使用过Volley,但这里是基本的cUrl

## anime-lowercase
curl -X "POST" "https://apex.oracle.com/pls/apex/dbtools/test/postAnime" \
     -H 'Content-Type: application/json' \
     -d $'{
  "genres": "G6",
  "season": "1",
  "name": "anime-99",
  "nb_episode": "1",
  "rating": "1"
}'

其余的定义。

enter image description here