我有一个使用图形api的简单函数,我想在用户按下按钮时运行它。我正在运行的文件是一个ejs文件,页眉和页脚作为代码的前缀和后缀。
我的代码如下:
<%- include("./partials/header")%>
<script type="text/javascript" src ="https://cdn.jsdelivr.net/npm/chart.js@2.9.3/dist/Chart.min.js"></script>
<button onclick="<%Functions.common1()%>">Click me</button>
<canvas id="myChart" width="400" height="300"></canvas>
<button onclick="<%Functions.common1()%>">Graph me</button>
<script>
var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
</script>
<%- include("./partials/footer")%>
我有一个名为common1的函数,它是另一个名为functions的文件中的导出函数,它只是console.logs一个字符串。我希望运行整个脚本来运行一个按钮上的图形,我如何做到这一点?
您可能希望将创建图形的代码移到common1
函数中。