Jump to content
Fórum Script Brasil
  • 0

Problemas com ajax usando Zend Framework


Blackmage

Question

Boa noite à todos!

Estou tentando usar ajax com o Zend, mas o meu codigo não está funcionando

Estou usando o helper ajaxContext para ele desabilitar o layout e carregar a view, mas parece que ele não está funcionando, pois elenão está procurando a view com o sufixo *.ajax.phtml e também não está desabilitando o layout como mostra essa saída do firebug

<h1>LAYOUT</h1>
teste
O javascript que faz a requisição ajax:
function check()
{
    $.ajax({
        url: 'http://localhost/teste/public/index/check',
        success: function(result) {
        } 
    });
}
O código do meu controller:
<?php
class IndexController extends Zend_Controller_Action
{
    public function preDispatch()
    {
        $ajaxContext = $this->_helper->getHelper('ajaxContext');
        $ajaxContext->addActionContext('check', 'html');
        $ajaxContext->initContext();
    }
    
    public function indexAction()
    {
    }
    
    public function checkAction()
    {
    }
}
?>
O codigo da view check.phtml
<?='teste';?>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...