我使用jqChart插件在移动设备上显示图表,所以现在HTML文件驻留在移动设备上。
服务器接受两个参数,如
http://somedomain:15025/Service1.svc/storewise_sales_qty_asp/{param1},{param2}
并显示JSON响应。
这是HTML代码的一部分
<script lang="javascript" type="text/javascript">
$(document).ready(function () {
$('#jqChart').jqChart({
title: { text: 'Binding to Remote Data' },
animation: { duration: 1 },
shadows: {
enabled: true
},
dataSource: {
ajax: {
type: "POST",
url: "http://somedomain:15025/Service1.svc/storewise_sales_qty_asp/26670,26770",
contentType:"application/json",
dataType: 'jsonp',
crossDomain:true,
data: "",
}
},
series: [
{
type: 'column',
xValuesField: {
name: 'Store',
type: 'string' // string, numeric, dateTime
},
yValuesField: 'Qty'
}
]
});
});
</script>
当我尝试访问HTML文件时。它变得空白。没有收到数据或其他东西。我是j查询和java的新手。我该怎么做。