AJAX ile veri almak için çalışıyorlar. PHP tarafından bana gönderilen ne 'okumak' mümkün görünmüyor olabilir. İşte kod
$('create_course').addEvent('submit', function(e){
e.stop();
flash.setStyle('display', 'none');
this.set('send', {
onComplete: function(resp){
if ($chk(resp))
{
console.log($type(resp));
if (resp == 'true')
{
flash.set('html', resp);
flash.reveal();
}
elseif (resp == 'false')
{
$$('div.information').dissolve();
$$('div.options').reveal();
}
}
}
}).send();
});
Ben yanlış bir doğru ve farklı bir aldığınızda farklı bir eylem olur.
This was the code.
if (is_ajax())
{
if ($this->form_validation->run('course_create') === TRUE)
{
$course = array(
'name' => $this->input->post('name'),
'description' => $this->input->post('desc'),
'price' => $this->input->post('price')
);
if ($this->course->create($course))
{
echo 'true';
}
else
{
echo 'false';
}
}
else
{
echo validation_errors('<div class="message error"><p>', '</p></div>');
}
}
Not: Ben bir tepki varsa sadece okumak için php ve js modifiye ettik. Yani bu php ve js olarak kullanılan budur. Benim açımdan Mootools / JS dönüş değeri 'okumak' nasıl olduğunu.