Forum authro search is working

This commit is contained in:
2017-06-12 15:26:34 +03:00
parent bf9ec07808
commit 44c733b582
5 changed files with 43 additions and 1 deletions

View File

@@ -1,8 +1,10 @@
<h1>api</h1>
<a href="/api/foorum">foorum</a>
<br/>
<button onclick="getForum(prompt('ForumId: ', '1'))">GetForum</button>
<button onclick="getForums()">GetAllForums</button>
<button onclick="addForum()">AddForum</button>
<button onclick="searchForumAuthor(prompt('Author: ', 'veeb'))">SearchForumAuthor</button>
<code><pre id="output"></pre></code>
<script>
@@ -42,4 +44,13 @@
body: JSON.stringify(dto)
});
}
function searchForumAuthor(author) {
fetch("/api/search?author="+author).then(resp => {
return resp.json();
}).then(data => {
console.log(data);
out.innerText = JSON.stringify(data, null, 2);
});
}
</script>