Created
February 15, 2021 16:10
-
-
Save krisnachy/dfebe6d8cc64a9636f2a6660a70344ee to your computer and use it in GitHub Desktop.
Hasil jawaban [POST TEST] REST API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//data JSON | |
[ | |
{ | |
"id": 1, | |
"isbn": 123456, | |
"judul": "latihan", | |
"sinopsis": "Mencoba database", | |
"penulis": "krisna", | |
"genre": "horor", | |
"harga": 20000 | |
}, { | |
"id": 2, | |
"isbn": 12534, | |
"judul": "dua", | |
"sinopsis": "testing", | |
"penulis": "lain", | |
"genre": "fiksi", | |
"harga": 30000 | |
}, { | |
"id": 3, | |
"isbn": 1876234, | |
"judul": "tiga", | |
"sinopsis": "testing3", | |
"penulis": "krisna", | |
"genre": "thriller", | |
"harga": 30000 | |
}, { | |
"id": 4, | |
"isbn": 12368, | |
"judul": "empat", | |
"sinopsis": "testing4", | |
"penulis": "cahya", | |
"genre": "lainnya", | |
"harga": 20000 | |
}, { | |
"id": 5, | |
"isbn": 14539948, | |
"judul": "lima", | |
"sinopsis": "testing5", | |
"penulis": "lain", | |
"genre": "fiksi", | |
"harga": 20000 | |
} | |
] | |
//format XML | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<root> | |
<row> | |
<id>1</id> | |
<isbn>123456</isbn> | |
<judul>latihan</judul> | |
<sinopsis>Mencoba database</sinopsis> | |
<penulis>krisna</penulis> | |
<genre>horor</genre> | |
<harga>20000</harga> | |
</row> | |
<row> | |
<id>2</id> | |
<isbn>12534</isbn> | |
<judul>dua</judul> | |
<sinopsis>testing</sinopsis> | |
<penulis>lain</penulis> | |
<genre>fiksi</genre> | |
<harga>30000</harga> | |
</row> | |
<row> | |
<id>3</id> | |
<isbn>1876234</isbn> | |
<judul>tiga</judul> | |
<sinopsis>testing3</sinopsis> | |
<penulis>krisna</penulis> | |
<genre>thriller</genre> | |
<harga>30000</harga> | |
</row> | |
<row> | |
<id>4</id> | |
<isbn>12368</isbn> | |
<judul>empat</judul> | |
<sinopsis>testing4</sinopsis> | |
<penulis>cahya</penulis> | |
<genre>lainnya</genre> | |
<harga>20000</harga> | |
</row> | |
<row> | |
<id>5</id> | |
<isbn>14539948</isbn> | |
<judul>lima</judul> | |
<sinopsis>testing5</sinopsis> | |
<penulis>lain</penulis> | |
<genre>fiksi</genre> | |
<harga>20000</harga> | |
</row> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment