0

我使用框架 scalatra,我以这种方式在页面 .ssp 上声明我的数组

<% @ val table_activity: Array [String]%>

通常如果我想从页面中间提取数据 .ssp :

<%  for ( x <- 0 to table_activity.length-1)    {   %>  

       <tr> 
            <td>     
                 <%=table_activity(x) %>
            </td>   
       </tr>    

<%  }   %>

但就我而言,我想在 javascript 函数中管理我的数据,但我不知道该怎么做!!如果你有想法请帮助我

4

1 回答 1

0

根据您的用例,您可以将数据序列化为 json,然后从您的 javascript 代码中访问它。如果您以前从未这样做过,有几个可用于 scala 的库: http: //engineering.ooyala.com/blog/comparing-scala-json-libraries

于 2014-10-13T16:17:17.177 回答