У меня возникли проблемы с доступом к атрибуту модели в Javascript;в частности, у меня есть этот контроллер:
@RequestMapping(value = "/dashboard")
public ModelAndView home(HttpServletRequest request, HttpServletResponse
res, Model model) {
// Return answer's dictionary from DB to dashboard view
CompQuest dizRisp = new CompQuest();
dizRisp.setDizComp(dashDao.getRispEnd());
model.addAttribute("dizRisp", dizRisp);
return new ModelAndView("dashboard");
}
, и у меня есть этот файл Javascript (здесь: только часть с кодом для моей диаграммы, где я хочу сослаться на атрибут модели), где я хочу получить доступ к моделиатрибут "dizRisp" из моего контроллера:
var ctx1 = document.getElementById('myChart1').getContext('2d');
var myRadarChart = new Chart(ctx1, {
type: 'radar',
data: {
labels: ['Valori e identità del SCN', 'La cittadinanza attiva',
'Il giovane volontario nel sistema del SC', 'Lavorare',
'Prevenzione e protezione', 'Normativa sicurezza',
'Rischi sulla salute in tema di ambiente'
],
datasets: [{
label: "Civiche",
data: [4, 5, 5, 2, 4, 5, 4],
fill: true,
borderJoinStyle: "round"
}],
},
options: {
maintainAspectRatio: false,
scale: {
ticks: {
stepSize: 1,
step: 1,
beginAtZero: true,
max: 5
}
}
}
});
Мои классы (здесь: нет методов получения и установки):
public class CompQuest {
private HashMap <String, CompRisp> dizComp;}
public class CompRisp {
private ArrayList <Risposte> rispList = new ArrayList <Risposte> ();}
public class Risposte {
int id;
Domande domande;
int valore;
int momento; }
public class Domande {
int id;
String testo;
String descrizione;
Questionario questionario; }
Мой файл .jsp:
<meta charset="UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js" ></script>
<script src="resources/dashboard.js" type="text/javascript"></script>
<link rel="stylesheet" href="${pageContext.request.contextPath}/resources/dashboard.css">
<title>Dashboard</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Bitter|Roboto+Condensed');
@import url('https://fonts.googleapis.com/css?family=Roboto');
</style>
В частности, я хотел бы получить доступ к моему атрибуту модели (Hashmap), чтобы поместить в поле метки и наборов данных значения моей диаграммы Javascript из моей Hashmap, которая содержит данные из моегоБаза данных.
Заранее спасибо всем, кто может мне помочь!