-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathexampleWithScript.html
35 lines (33 loc) · 1.22 KB
/
exampleWithScript.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<body>
<div id="container" class="admin-list"></div>
<script type="module">
import { SubmitForm } from "/cat/schema-form/js/svelte-schema-form";
const value = Array.from({{ data | dump | safe }});
const props = {
schema: {{ schema | dump | safe }},
value,
uploadBaseUrl: "/file/image",
submitText: "Save"
};
const frm = new SubmitForm({
target: document.getElementById("container"),
props
});
frm.$on('value', (ev) => console.log('V=' + JSON.stringify(ev.detail)));
frm.$on('submit', async (ev) => {
const data = ev.detail;
const resp = await fetch("{{ writeUrl }}", {
method: "POST",
credentials: "include",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(data.value)
});
const json = await resp.json();
alert(JSON.stringify(json, 2));
});
</script>
</body>
</html>