how to change {} to ${} in quarkus qute?
there are some css,js in html.it error now. for example:
<style type="text/css">
body\{background-color: #D0D9E0;\}
</style>
<script type="text/javascript">
$.ajax({
url: '/getUserinfo',
data: {accessToken: accessToken},
dataType: 'json',
success: function(res) {
if(res.code == 200) {
layer.alert(JSON.stringify(res.data));
} else {
layer.alert(res.msg);
}
},
error: function(xhr, type, errorThrown){
return layer.alert("异常:" + JSON.stringify(xhr));
}
});
</script>