1

我对 ZendX 相当陌生,我真的很想在 Zend 上获得简单的 JQuery 示例来开始工作。我已经按照下面链接中的示例进行操作,但我得到的只是一个纯文本框,没有任何我预期的日期选择器功能。

在 Zend Framework 1.9 应用程序中开始使用 jQuery 的最佳方式是什么?

在我的引导程序中,我有

protected function _initViewHelpers()
    {   

        $this->bootstrap('layout');
        $layout = $this->getResource('layout');
        $view = $layout->getView();     

        $view->doctype('XHTML1_STRICT');
        $view->headMeta()->appendHttpEquiv('Content-Type', 'text/html;charset=utf-8');
        $view->headTitle()->setSeparator(' - ');
        $view->headTitle('JQUERY Test');

        //assuming you already have this function in your bootstrap
        //jQuery (using the ui-lightness theme)

        $view->addHelperPath("ZendX/JQuery/View/Helper", "ZendX_JQuery_View_Helper");
        $view->jQuery()->addStylesheet('/js/jquery/css/ui-lightness/jquery-ui-1.7.2.custom.css')
                        ->setLocalPath('/js/jquery/js/jquery-1.3.2.min.js')
                        ->setUiLocalPath('/js/jquery/js/jquery-ui-1.7.2.custom.min.js');                                            
    }   

在我的布局中,我包括了

<head>
    <?php echo $this->HeadMeta(); ?>
    <?php echo $this->headTitle(); ?>
    <?php echo $this->headLink(); ?>
    <?php echo $this->headScript(); ?>
    <?php echo $this->jQuery(); ?>
    <?php echo $this->headLink()->prependStylesheet($this->baseUrl().'/css/main.css'); ?>   
    <?php echo $this->render('_javascript.phtml'); ?>
</head>

我错过了什么?

4

3 回答 3

0

您添加ZendX_JQuery::enableView($view);到 _initViewHelpers

于 2010-01-17T00:54:39.160 回答
0

我通过 application.ini 方式,结果如下:

resources.view.helperPath.ZendX_JQuery_View_Helper = "ZendX/JQuery/View/Helper"
resources.view[] =
pluginPaths.ZendX_Application_Resource = "ZendX/Application/Resource"
resources.jquery.localpath = "/project1/public/jquery/development-bundle/jquery-1.7.1.js"
resources.jquery.stylesheet = "/project1/public/jquery/development-bundle/themes/smoothness/jquery-ui-1.8.18.custom.css"
resources.jquery.uilocalpath = "/project1/public/jquery/development-bundle/ui/jquery-ui-1.8.18.custom.js"

我不确定引导代码,但我从研究中得到的是下面的代码。可能最后三行会有所帮助。

protected function _initViewHelpers()
{   

    $this->bootstrap('layout');
    $layout = $this->getResource('layout');
    $view = $layout->getView();     

    $view->doctype('XHTML1_STRICT');
    $view->headMeta()->appendHttpEquiv('Content-Type', 'text/html;charset=utf-8');
    $view->headTitle()->setSeparator(' - ');
    $view->headTitle('JQUERY Test');

    //assuming you already have this function in your bootstrap
    //jQuery (using the ui-lightness theme)

    $view->addHelperPath("ZendX/JQuery/View/Helper", "ZendX_JQuery_View_Helper");
    $view->jQuery()->addStylesheet('/js/jquery/css/ui-lightness/jquery-ui-1.7.2.custom.css')
                    ->setLocalPath('/js/jquery/js/jquery-1.3.2.min.js')
                    ->setUiLocalPath('/js/jquery/js/jquery-ui-1.7.2.custom.min.js');

  $viewRenderer = new Zend_Controller_Action_Helper_ViewRenderer();
  $viewRenderer->setView($view);
  Zend_Controller_Action_HelperBroker::addHelper($viewRenderer);                                            
}  
于 2012-07-31T22:56:06.757 回答
0
  1. 您是否使用有效选项从视图脚本中调用了视图助手?看您提到的问题中的示例

  2. 您是否仔细检查了本地 js- 和 css 文件的路径?

于 2010-01-13T11:40:37.477 回答