本文介绍了寻求在Joomla中实施HighCharts的指导的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们想在我们的自定义Joomla模块中实现HighCharts。由于它是一个Javascript库,我们是否将它作为对脚本文件的引用附加到视图中?我也读过关于HighCharts的PHP包装器。建议使用它而不是直接的Javascript库吗?
解决方案为了将Javascript文件嵌入到Joomla模块中,您需要使用以下代码:
$ document =& JFactory :: getDocument();
$ document-> addScript(JURI :: root()。modules / mod_your_module / file.js);
$ document-> addScript(JURI :: root()。modules / mod_your_module / file2.js);
...
如果您需要编写自定义Javascript,那么您需要编写它像这样:
$ js ='alert(alert message);';
$ document-> addScriptDeclaration($ js);
希望这有助于您。
We want to implement HighCharts in our custom Joomla module. Since it's a Javascript library, do we attach it to the view as a reference to the script files? I've also read about a PHP wrapper for HighCharts. Is it advisable to use it instead of the direct Javascript library?
解决方案
To embed Javascript files into a Joomla module, you need to use the following code:
$document =& JFactory::getDocument();
$document->addScript(JURI::root() . "modules/mod_your_module/file.js");
$document->addScript(JURI::root() . "modules/mod_your_module/file2.js");
...
If you need to write custom Javascript, then you will need to write it like so:
$js = 'alert("alert message");';
$document->addScriptDeclaration($js);
Hope this helps.
这篇关于寻求在Joomla中实施HighCharts的指导的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
08-28 08:51