8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
async function press() {
|
|
const res = await fetch('/press', {
|
|
method: 'POST'
|
|
});
|
|
const data = await res.text();
|
|
alert(data);
|
|
}
|