gpt4 book ai didi

php - Require.js 和 Zend 框架

转载 作者:行者123 更新时间:2023-12-01 04:17:50 25 4
gpt4 key购买 nike

将 Require.js 包含在 Zend Framework 中的最佳方法是什么?我目前在zend框架中调用js文件的方式如下:

<?php echo $this->jQuery()->setLocalPath($this->path('js/jquery/jquery-1.7.1.min.js'))
->enable()
->setUiLocalPath($this->path('js/jquery/jquery-ui-1.8.16.custom.min.js'))
->uiEnable()
->addStylesheet($this->path('css/jquery/jquery-ui-1.8.16.custom.css'));

echo $this->headScript()->appendFile($this->path('js/jquery.tipTip.js'))

->appendFile($this->path('js/customScripts/facebook.js'))
->appendFile($this->path('js/facebook/jquery.facebook.multifriend.select.js'))
->appendFile($this->path('js/customScripts/logindialog.js'))
->appendFile($this->path('js/customScripts/globalFunctions.js'))
->appendFile($this->path('js/kendo.web.min.js'))
->appendFile($this->path('js/customScripts/fancyAlert.js'))
->appendFile($this->path('js/inc/jquery.mousewheel.min.js'))
->appendFile($this->path('js/pagination-jq.js'))


->appendFile($this->path('js/jquery.tools.min.js'))
->appendFile($this->path('js/fancybox/jquery.fancybox-1.3.4.pack.js'))
->appendFile($this->path('js/jq-history/scripts/jquery.history.min.js'));

?>

最佳答案

使用 require.js,您只需添加一个脚本文件到您的头部(或者在关闭 </body> 之前)。

然后,您将在 require.js 配置文件和模块中实际定义每个模块的依赖项。

对于您的情况,我只需手动添加脚本文件:

<script src="require.js" data-main="path/to/mainScriptFile"></script>

或者,在 Zend 中你可以这样做:

$this->headScript()
->setAllowArbitraryAttributes(true)
->appendFile($this->path('js/require.js'), "text/javascript", array('data-main' => 'path/to/mainScriptFile');

但此时,只需手动输入脚本标签,开销就少了。

希望这有帮助!

关于php - Require.js 和 Zend 框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13354899/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com