如何将java数组列表转换为javascript数组?
我们如何将 String 对象的 java 数组列表转换为 java 脚本数组?
这就是我正在做的事情,但我正在寻找更好的方法来做到这一点。我不想迭代数组列表。
var myArray = [
<c:forEach items="${myList}" var="item">
{itemName: "${item.name}"},
</c:forEach>
];
谢谢。
How do we convert java array list of String objects to java script array?
This is what I am doing but I am looking for a better way to do it. I dont want to iterate over the array list.
var myArray = [
<c:forEach items="${myList}" var="item">
{itemName: "${item.name}"},
</c:forEach>
];
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 java 库,例如 gson 或 Jackson 将java中的arraylist对象转换为JSON,然后将其传输到客户端,您可以使用javascript从JSON中提取它。这里你可以避免在客户端循环,因为 gson 在创建 JSON 时将 java ArrayList 转换为 javascript 数组。
You can use java libraries such as gson or Jackson to convert the arraylist object in java to JSON and then transfer it over to the client side where you can extract it from the JSON using javascript. Here you can avoid looping on the client side because gson converts java ArrayList to a javascript array when it creates JSON.
没有直接的方法将 Java ArrayList 转换为 Javascript Array。
您必须执行以下步骤之一
1. 将Java ArrayList转换为JSON String,然后通过解析该String将其转换为Javascript Array。
2. 直接将ArrayList(使用scriptlet)写入Javascript字符串,然后将其拆分/解析为数组。
3. 通过调用 ArrayList.toString() 作为响应来发送字符串,然后按照步骤 2 进行操作。
There is no direct way to convert the Java ArrayList to the Javascript Array.
You have to do one of the following step
1. Convert the Java ArrayList to the JSON String and then convert it to Javascript Array by parsing the String.
2. Directly write the ArrayList (using scriptlet) to the Javascript String and then split/parse it the the array.
3. Send a string by calling ArrayList.toString() as a response and then follow the Step 2.