2017-06-12 12:46:00 +03:00
|
|
|
|
<h1>api</h1>
|
2017-06-12 13:37:48 +03:00
|
|
|
|
<a href="/api/foorum">foorum</a>
|
2017-06-12 14:43:31 +03:00
|
|
|
|
<button onclick="getForum(prompt('ForumId: ', '1'))">GetForum</button>
|
2017-06-12 14:16:38 +03:00
|
|
|
|
<button onclick="getForums()">GetAllForums</button>
|
|
|
|
|
<button onclick="addForum()">AddForum</button>
|
2017-06-12 13:37:48 +03:00
|
|
|
|
<code><pre id="output"></pre></code>
|
|
|
|
|
|
|
|
|
|
<script>
|
2017-06-12 14:16:38 +03:00
|
|
|
|
var out = document.getElementById("output");
|
|
|
|
|
|
2017-06-12 14:43:31 +03:00
|
|
|
|
function getForum(id) {
|
|
|
|
|
fetch("/api/foorum/"+id).then(resp => {
|
|
|
|
|
return resp.json();
|
|
|
|
|
}).then(data => {
|
|
|
|
|
console.log(data);
|
|
|
|
|
out.innerText = JSON.stringify(data, null, 2);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 13:37:48 +03:00
|
|
|
|
function getForums() {
|
|
|
|
|
fetch("/api/foorum").then(resp => {
|
|
|
|
|
return resp.json();
|
|
|
|
|
}).then(data => {
|
|
|
|
|
console.log(data);
|
|
|
|
|
out.innerText = JSON.stringify(data, null, 2);
|
|
|
|
|
});
|
|
|
|
|
}
|
2017-06-12 14:16:38 +03:00
|
|
|
|
|
|
|
|
|
function addForum() {
|
|
|
|
|
var dto = {
|
|
|
|
|
Author: "Veebileht",
|
|
|
|
|
Body: "Siia tuleb <20>ge pikk sisu mingist asjast",
|
|
|
|
|
Description: "Siia kirjeldus",
|
|
|
|
|
Title: "Uhiuus postitus"
|
|
|
|
|
}
|
|
|
|
|
fetch("/api/foorum",
|
|
|
|
|
{
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: {
|
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify(dto)
|
|
|
|
|
});
|
|
|
|
|
}
|
2017-06-12 13:37:48 +03:00
|
|
|
|
</script>
|