2010-12-05 70 views
1

在給定的表格輸入字段,關於模糊,我想檢查該輸入值是否有效。
要知道該ID是否有效,我需要查詢數據庫
如果無效,則應在輸入字段旁邊顯示一條消息,指示該選項無效。Zend Framework和Jquery :: Ajax - 檢查id是否可用 - 如何?

我在Zend Framework上,但是,這是我第一次單獨的Ajax體驗。

我可以有一個關於如何實現這樣的事情的框架嗎?

我有點意識到,這樣的事情應該用...

if($this->getRequest()->isXmlHttpRequest()) { 
... 

但我真的需要幫助這裏。 :■

非常感謝,
MEM

回答

1

同時處理在Zend框架AJAX請求你應該照顧的第一件事 - 禁用視圖/ MVC佈局組件。

在你的動作,

public function validateAction() 
    { 

    if($this->getRequest()->isXmlHttpRequest()) { 
    //Disable the view/layout 
    $this->_helper->layout->disableLayout(); 
    $this->_helper->viewRenderer->setNoRender(TRUE); 

    //Receive the value from the form 
    $inputValue = $this->_getParam('name'); 

    //Access your model and validate the data. 

    $model = new Model(); 
    $result = $model->isValid($inputValue); 


    $myArray = array(
       'result'=>$result 
       ); 

    $jsonData = Zend_Json::encode($myArray); 
//Send the result back to the client 
    $this->response->appendBody($jsonData); 
    } 
    } 

接收來自客戶端的此JSON對象(使用jQuery),處理它,並顯示相應的消息。

一個類似的問題 - How do you make Zend Framework NOT render a view/layout when sending an AJAX response?