Files

30 lines
692 B
HTML
Raw Permalink Normal View History

2019-11-27 11:20:52 +01:00
<!DOCTYPE html>
<html>
2019-11-27 11:44:54 +01:00
<head>
2021-01-22 15:39:26 +01:00
<title>go-wasm-http-server hello demo</title>
2019-11-27 11:44:54 +01:00
<script>
navigator.serviceWorker.register('sw.js');
2021-01-21 23:07:42 +01:00
2019-11-27 11:47:20 +01:00
async function hello() {
const name = document.querySelector('#name').value;
2021-01-25 11:07:52 +01:00
const res = await fetch('api/hello', {
2019-11-27 11:44:54 +01:00
method: 'POST',
headers: {
'Content-Type': 'application/json',
2019-11-27 11:44:54 +01:00
},
body: JSON.stringify({ name }),
});
2021-01-25 11:07:52 +01:00
const { message } = await res.json();
2021-01-25 11:07:52 +01:00
alert(message);
2019-11-27 11:44:54 +01:00
}
</script>
</head>
2019-11-27 11:20:52 +01:00
<body>
<label for="name">Name: </label><input id="name" value="World" />
2019-11-27 11:50:23 +01:00
<button onclick="hello()">Hello</button>
2019-11-27 11:20:52 +01:00
</body>
2021-01-22 15:39:26 +01:00
</html>