diff options
Diffstat (limited to 'view/static')
-rw-r--r-- | view/static/ceres.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/view/static/ceres.js b/view/static/ceres.js index 3bfeb6c..2fff18c 100644 --- a/view/static/ceres.js +++ b/view/static/ceres.js @@ -31,6 +31,23 @@ function updateFormData(event) { }); } +function create(url) { + fetch(url, {method: 'POST'}) + .then(response => { + if (response.ok) { + console.log('Create successfully'); + } else { + console.error('Create failed'); + } + if (response.redirected) { + window.location.href = response.url; + } + }) + .catch(error => { + console.error('Network error:', error); + }); +} + function del(url) { fetch(url, {method: 'DELETE'}) .then(response => { |