Controllers+JS: Change the blog search to a POST request

This commit is contained in:
Riyyi
2022-12-02 11:51:52 +01:00
parent 2ecc79c714
commit 0138a14c29
3 changed files with 16 additions and 17 deletions
+7 -1
View File
@@ -37,7 +37,13 @@ $(document).ready(function() {
var url = $(this).data("url");
var search = $(this).val();
if (search.length == 0 || search.length >= 3) {
fetch(url + '/search?query=' + encodeURIComponent(search))
fetch(url, {
method: 'POST',
body: 'search=' + encodeURIComponent(search),
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
}
})
.then(response => response.text())
.then(data => {
$("#blog-posts").empty().append(data);