您好我正在尝试将jsp变量设置为javascript数组。我尝试过,但是当我运行代码时,我无法实现这一点。我没有得到我的输出,我只看到一个空白的屏幕。
这是我的代码:
value.jsp
<script>
<%
URL url;
ArrayList<String> list1 = new ArrayList<String>();
ArrayList<String> list2 = new ArrayList<String>();
List commodity = null;
List pric = null;
int c = 0;
int p = 0;
try {
// get URL content
String a = "http://122.160.81.37:8080/mandic/commoditywise?c=paddy";
url = new URL(a);
URLConnection conn = url.openConnection();
// open the stream and put it into BufferedReader
BufferedReader br = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
StringBuffer sb = new StringBuffer();
String inputLine;
while ((inputLine = br.readLine()) != null)
{
System.out.println(inputLine);
// sb.append(inputLine);
String s=inputLine.replace("|", "\n");
s = s.replace("~"," ");
StringTokenizer str = new StringTokenizer(s);
while(str.hasMoreTokens())
{
String mandi = str.nextElement().toString();
String price = str.nextElement().toString();
list1.add(mandi);
list2.add(price);
}
}
commodity = list1.subList(0,10);
pric = list2.subList(0,10);
for (c = 0,p = 0; c < commodity.size()&& p<pric.size(); c++,p++)
{
String x = (String)commodity.get(c);
String y = (String)pric.get(p);
//out.println(y);
//out.println(x);}
%>
jQuery(function ($) {
var roles = [];
roles.push(<%= x%>)
roles.push(<%= y%>)
<%
}
%>
var counter = 0;
var $role = $('#role')
//repeat the passed function at the specified interval - it is in milliseconds
setInterval(function () {
//display the role and increment the counter to point to next role
$role.text(roles[counter++]);
//if it is the last role in the array point back to the first item
if (counter >= roles.length) {
counter = 0;
}
}, 400)
});
</script>
<%
br.close();
//System.out.println(sb);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
%>
如何实现所需的输出?
答案 0 :(得分:1)
当你从JSP输出到JS时,你必须确保你的输出是有效的JS。
您当前的输出将输出一个没有引号的字符串,JS解释器将其视为JS代码而不是您想要的字符串或数组。
此外,您正在制作10份JS
jQuery(function ($) {
var roles = [];
roles.push(<%= x%>)
roles.push(<%= y%>)
并且该功能永远不会关闭。
我会寻找一个体面的JSON输出库。这会在这里简化你的生活。
答案 1 :(得分:0)
看起来你在循环的每次传递中清除角色变量var roles = [];
。
您可能需要考虑不发布整个文件,而是将示例与您需要帮助的部分配对。
您还可以将数组放入JSON对象并在javascript中解析它。这可能是一个更清洁的实施。
答案 2 :(得分:0)
尝试使用roles.push(“&lt;%= x%&gt;”)等引号括起scriptlet,并检查数组初始化。