我正在尝试将对象数组从后端传递到前端。
app.js
router.post('/submits',urlencodedParser,function(req,res)
{
//getLocation function returns an array of objects
getLocation(req.body.latval,req.body.longval)
res.redirect('./table');
});
router.get('/table',function(req,res)
{
res.render("table");
});
table.js(前端)
window.onload= table();
function table(array)
{
var table = document.getElementById("table");
for(var i = 0;i<table.rows.length;i++)
{
for(j=0;j<table.rows[i].cells.length;j++)
{
table.rows[i].cells[j].innerHTML = array[i][j];
}
}
});
所以我试图将数组作为参数发送给table.js中的函数。我该怎么办?