突然发现,帆软的js会与服务器进行交互,造成批量取值.批量赋值效率低.
本地环境测试速度很好.但是互联网环境,就会慢吞吞.大约每次触发都要一两秒.
有大神有好办法么?
- var a = contentPane.curLGP.getCellValue("D5");
- var b = contentPane.curLGP.getCellValue("E5");
- var c = contentPane.curLGP.getCellValue("F5");
- var d = contentPane.curLGP.getCellValue("G5");
- var e = contentPane.curLGP.getCellValue("H5");
- var f = contentPane.curLGP.getCellValue("I5");
- var g = contentPane.curLGP.getCellValue("J5");
- var h = contentPane.curLGP.getCellValue("K5");
- var i = contentPane.curLGP.getCellValue("L5");
- var j = contentPane.curLGP.getCellValue("M5");
- var k = contentPane.curLGP.getCellValue("N5");
- var l = contentPane.curLGP.getCellValue("O5");
- contentPane.setCellValue(0, col, row, a);
- contentPane.setCellValue(0, col + 1, row, b);
- contentPane.setCellValue(0, col + 2, row, c);
- contentPane.setCellValue(0, col + 3, row, d);
- contentPane.setCellValue(0, col + 4, row, e);
- contentPane.setCellValue(0, col + 5, row, f);
- contentPane.setCellValue(0, col + 6, row, g);
- contentPane.setCellValue(0, col + 7, row, h);
- contentPane.setCellValue(0, col + 8, row, i);
- contentPane.setCellValue(0, col + 9, row, j);
- contentPane.setCellValue(0, col + 10, row, k);
- contentPane.setCellValue(0, col + 11, row, l);
复制代码
|