This is my Ajax Query
JavaScript
x
function updateTask() {
var task_id = document.getElementById('edit').getAttribute('edit_task_id');
var newTask = document.getElementById('edit_task').value;
var csrf = document.querySelector('meta[name="csrf-token"]').content;
var close = document.getElementById('close');
var editob = new XMLHttpRequest();
editob.open('POST', '/{task_id}/{newTask}', true);
editob.setRequestHeader('X-CSRF-Token', csrf);
editob.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
editob.send("task_id=" + task_id, "newTask=" + newTask);
console.log(newTask);
console.log(task_id);
}
This is y Controller
JavaScript
public function editTask($id, $newTask){
//$x = $id->get('task_id');
print_r($id);
print_r($newTask);
}
And this is the response I get, butI actually want the proper string value that I passed through ajax
Advertisement
Answer
actually, your script shows proper data what you asking for
JavaScript
editob.open('POST', '/{task_id}/{newTask}', true);
here your URL looks something like this. because you sending a string instead of a value
JavaScript
http://your-domain.com/{task_id}/{newTask}
what you need to do is
JavaScript
editob.open('POST', `/${task_id}/${newTask}`, true);