Spring message tag javascript escape

前端 未结 1 1219
情话喂你
情话喂你 2021-02-15 15:17

When we try to display a label from a properties file, using spring tags, we can write:


         


        
相关标签:
1条回答
  • 2021-02-15 15:56

    If the message is a JavaScript string literal, such as in

    <script>
        function sayI18nedHello() {
            alert('<spring:message javaScriptEscape="true" code="hello" />');
        }
    </script>
    

    Then you need this attribute, which will escape the single and double quotes, the newline chars, the tabs, etc. in order to make sure that the generated JavaScript is valid.

    0 讨论(0)
提交回复
热议问题