1.10.33. fejezet, JSON szerver
Beküldte pzoli - 2024, február 23 - 12:35du
Kapcsolódó hivatkozások
Szerver telepítése
npm i -g json-server
Szerver indítása
json-server --watch db.json
A db.json tartalma:
{ "pokemon": [ { "id": 1, "name": "Pikachu", "type": "Electric", "image": "https://assets.pokemon.com/assets/cms2/img/pokedex/full/025.png", "url": "https://www.pokemon.com/us/pokedex/pikachu", "isCool": true, "isStylish": true, "weight": 6, "gender": "male" }, { "id": 2, "name": "Charmander", "type": "Fire", "image": "https://assets.pokemon.com/assets/cms2/img/pokedex/full/004.png", "url": "https://www.pokemon.com/us/pokedex/charmander", "isCool": true, "isStylish": false, "weight": 8.5 }, { "id": 3, "name": "Bulbasaur", "type": "Grass", "image": "https://assets.pokemon.com/assets/cms2/img/pokedex/full/001.png", "url": "https://www.pokemon.com/us/pokedex/bulbasaur", "isCool": false, "isStylish": true, "weight": 6.9, "gender": "female" }, { "id": 4, "name": "Squirtle", "type": "Water", "image": "https://assets.pokemon.com/assets/cms2/img/pokedex/full/007.png", "url": "https://www.pokemon.com/us/pokedex/squirtle", "isCool": false, "isStylish": false, "weight": 9 } ] }
Tesztelés
Nyissuk meg böngészőben a böngészőben a http://localhost:3000/pokemon oldalt. (itt a pokemon a json legfelső szintű opjektum neve).
- A hozzászóláshoz be kell jelentkezni