add method for create paper

merge-requests/3/head
Anton Romanov 6 years ago
parent 43e446e871
commit 5e4f137dba

@ -1,7 +1,7 @@
var urlPaperList = "https://localhost:8443/api/1.0/papers"; var urlPapers = "https://localhost:8443/api/1.0/papers";
function showPapers(papersElement) { function showPapers(papersElement) {
getFromRest(urlPaperList, function (paperList) { getFromRest(urlPapers, function (paperList) {
paperList.forEach(function (paper, index) { paperList.forEach(function (paper, index) {
$(papersElement).parent().append("<div class='row text-left'>" + $(papersElement).parent().append("<div class='row text-left'>" +
" <div class='col-md-12'>" + " <div class='col-md-12'>" +
@ -14,4 +14,16 @@ function showPapers(papersElement) {
" </div></div>"); " </div></div>");
}); });
}); });
}
function addPaper(title, status, comment, locked) {
var paperData = JSON.stringify({
"title": title,
"status": status,
"comment": comment,
"locked": locked
});
postToRest(urlPapers, paperData, function(data) {
alert(data);
});
} }

@ -34,6 +34,8 @@
<script src="js/papers.js"></script> <script src="js/papers.js"></script>
<script> <script>
showPapers($("#paper-list")); showPapers($("#paper-list"));
// only for demo
//addPaper("название", "DRAFT", "comment", false);
</script> </script>
</div> </div>
</body> </body>

Loading…
Cancel
Save