我有spring-mvc应用程序。
在控制器方法内的服务器端,我编写了以下代码:
return new ResponseEntity<>(messageSource
.getMessage("Common.wrongFileFormatOrSizeLimitExceeded", null, LOCALE_RU),
HttpStatus.NOT_EXTENDED);
在调试的服务器端,我看到了
messageSource.getMessage("Common.wrongFileFormatOrSizeLimitExceeded", null, LOCALE_RU)
返回正确的本地化消息。
在客户端我有以下代码:
$.ajax({
....
error: function (data) {
console.log(data.responseText);
}
客户端代码将以下消息写入控制台:
???????????????????????????????????????
当我从服务器传递拉丁语消息时 - 代码正常工作。
如何将本地化消息从服务器传递到客户端?