9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ThymeleafでHTMLにJavaScript変数を埋め込む方法

Posted at
<script th:inline="javascript">
      /*<![CDATA[*/
         var user = /*[[${session.userName}]]*/ 'Foo';
         var users = /*[[${users}]]*/ null;
       /*]]>*/
</script> 

※session.userNameには文字列、usersにはJavaのオブジェクトのListが入っている

<script>
    /*<![CDATA[*/
        var user = 'John';
        var users = [{'name':'Nobuchan','age':4},{'name':'Daichan','age':3}];
    /*]]>*/
</script> 
9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?