Files
wasm-http-server/docs/index.html

24 lines
596 B
HTML
Raw Normal View History

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