我正在使用thymeleaf和spring-boot來解析實體。關於if語句的JQuery AND OR運算符
我想一個布爾字段的值更改爲類似「是」或「否」,但因爲它的簡單,似乎我收到以下錯誤字符串:
12:54:30.046 [XNIO-2 task-17] ERROR o.t.templateparser.ErrorHandler - [THYMELEAF][XNIO-2 task-17] Fatal error during parsing org.xml.sax.SAXParseException: The entity name must go inmediately after the '&' in the entity reference.
Exception parsing document: template="scenariosList", line 401 - column 21
這是我最後一次嘗試在javascript:
var modificat = $("#modificatEscenari").val();
var calculat = $("#calculatEscenari").val();
if(calculat){
$("#calculat").val("Sí");
}
else{
$("#calculat").val("No");
$("#calculPendent").val("Sí");
}
if(modificat){
$("#calculPendent").val("Sí");
}
if(!modificat && calculat){
$('#calculPendent').val("No");
}
誰能告訴我是什麼在此代碼是錯的,如果(modificat & & CALCULAT!){?我已閱讀if語句中的運算符的用法,對我來說看起來很好。
編輯
它裹得像個
<script>
$(document).ready(function() {
....
doing my stuff and the piece of code that trigger the exception
</script>
謝謝。
這是發現的JavaScript,我想Thymeleaf使用''&&達到自己的目的。 – Barmar