Я пытаюсь добавить ссылку href из jquery datatable, но thymleaf th: href = "@ {}" не распознает, когда обрабатывается страница.вот мой код.
$("#categoriesTable").DataTable({
"Processing":true,
"ServerSide":true,
"ajax": {"url": "/ajax/categories", "dataSrc": ""},
"columns": [
{"data": "id"},
{"data": "name"},
{"data": "description"},
{"data": "create_at"},
{"data": null,
"render": function(data, type, row){
return '<a class="btn btn-primary btn-xs" th:href="@{/category/'+data.id+'/edit}" >Edit</a>'
},
"targets": -1
}
]
});