.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
form = new FormData(document.getElementById('searchForm'));
fetch('/list_result', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: form
});
returns the fetching process result.