我已尝试在x86计算机上成功执行代码。不会遇到任何错误,并且会显示一个表,其中包含从data.xml中提取的数据。 (Flexigrid是一个用于显示表的库。)在Firefox的日志中收到[10:37:42.196] POST http://localhost/data.xml [HTTP/1.1 200 OK 1ms]
消息。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Flexigrid</title>
<link rel="stylesheet" type="text/css" href="./css/flexigrid.css">
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript" src="./js/flexigrid.js"></script>
</head>
<body>
<table id="flex1" style="display:none"></table>
<script type="text/javascript">
$("#flex1").flexigrid({
url: '../data.xml',
dataType: 'xml',
colModel : [
{display: 'Ports', name : 'port', width : 50, sortable : true},
{display: 'Rx bytes', name : 'rx_bytes', width : 50, sortable : true},
{display: 'Rx drop', name : 'rx_drop', width : 50, sortable : true},
{display: 'Rx errs', name : 'rx_errs', width : 50, sortable : true},
{display: 'Rx frame', name : 'rx_frame', width : 50, sortable : true},
{display: 'Rx over', name : 'rx_over', width : 50, sortable : true},
{display: 'Rx CRC', name : 'rx_crc', width : 50, sortable : true},
{display: 'Tx pkts', name : 'tx_pkts', width : 50, sortable : true},
{display: 'Tx bytes', name : 'tx_bytes', width : 50, sortable : true},
{display: 'Tx drop', name : 'tx_drop', width : 50, sortable : true},
{display: 'Tx errs', name : 'tx_errs', width : 50, sortable : true},
{display: 'Tx coll', name : 'tx_coll', width : 50, sortable : true}
],
sortname: "port",
sortorder: "asc",
usepager: false,
useRp: true,
rp: 15,
showTableToggleBtn: true,
width: 746,
onSubmit: addFormData,
height: 200
});
function addFormData(){
//passing a form object to serializeArray will get the valid data from all the objects, but, if the you pass a non-form object, you have to specify the input elements that the data will come from
var dt = $('#sform').serializeArray();
$("#flex1").flexOptions({params: dt});
return true;
}
$('#sform').submit(function (){
$('#flex1').flexOptions({newp: 1}).flexReload();
return false;
});
</script>
</body>
</html>
但是当我在基于ARM的交换机上尝试相同的代码时,会出现一个空的flexigrid表。发现这种情况下的data.xml与x86机器完全相同。
但是,在firefox的日志中,我收到了以下消息:[10:24:57.611] POST http://192.168.3.1/data.xml [HTTP/1.0 501 Not Implemented 3ms]
其中192.168.3.1是交换机的IP。什么HTTP / 1.0 501未实现完全引用?有人知道解决这个问题的方法吗?
更新
只是注意到在我的x86机器上,如果我浏览http://localhost/data.xml,xml的内容会出现在firefox中,但如果我在服务器上浏览data.xml http://192.168.3.1/data.xml,则会下载文件data.xml而不是出现在firefox中。
答案 0 :(得分:0)
您可以捕获两个不同客户端的HTTP请求和响应标头吗?最有可能的是,这些是不同的,并且导致嵌入式系统的请求被区别对待。