如何将java数组列表转换为javascript数组?

发布于 2024-12-07 06:45:49 字数 266 浏览 0 评论 0原文

我们如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浪荡不羁 2024-12-14 06:45:50

您可以使用 java 库,例如 gsonJackson 将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.

硪扪都還晓 2024-12-14 06:45:49

没有直接的方法将 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.

紧拥背影 2024-12-14 06:45:49
var myArray2 = new Array();
myArray2= new Array('<s:property value="%{Listclassaveragelist}"/>');
var carter = myArray2.toString();
carter = carter.replace("[","");
carter = carter.replace("]","");
carter = carter.split(",");
var myArray2 = new Array();
myArray2= new Array('<s:property value="%{Listclassaveragelist}"/>');
var carter = myArray2.toString();
carter = carter.replace("[","");
carter = carter.replace("]","");
carter = carter.split(",");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文