gpt4 book ai didi

javascript - 在 symfony2 中安装 Javascript

转载 作者:行者123 更新时间:2023-12-02 18:27:31 27 4
gpt4 key购买 nike

大家好 Stackoverflow。

我正在尝试在测试 Twig View 中使用 javascript 图形。这是 View :

    <h1>test</h1>
{% javascripts '@AcmeFooBundle/Resources/public/js/*' %}
<script src="{{ asset_url }}" type="text/javascript">
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {

title:{
text: "Fruits"
},
data: [//array of dataSeries
{ //dataSeries object

/*** Change type "column" to "bar", "area", "line" or "pie"***/
type: "column",
dataPoints: [
{ label: "banana", y: 18 },
{ label: "orange", y: 29 },
{ label: "apple", y: 40 },
{ label: "mango", y: 34 },
{ label: "grape", y: 24 }
]
}
]
});

chart.render();
}


</script>
<script type="text/javascript" src="{{ asset_url }}"></script>
{% endjavascripts %}

<body>
<div id="chartContainer" style="height: 300px; width: 100%;">
</div>
</body>

所以问题是 JavaScript 库没有安装,因为它返回给我这个错误消息:

An exception has been thrown during the compilation of a template ("You must add PreditBundle to the assetic.bundle config to use the {% javascripts %} tag in PreditBundle:Default:test.html.twig.") in "PreditBundle:Default:test.html.twig".

我尝试过的事情:

-按照“如何使用assetic进行 Assets 管理”页面逐步操作-使用控制台命令:assets:install 和 assetic:dump

感谢您的回答

最佳答案

您必须在 config.yml 中添加您的包。

assetic:
bundle: [ PreditBundle ]

关于javascript - 在 symfony2 中安装 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18203631/

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