插入行添加最后一笔数据

如何在插入行后增加最后一条数据,我的数据库是每秒出入一条。在点击插入后怎么把最新的数据插入?我设置的插入为页面刷新后的最后一条,一直是重复的image.png

FineReport 北极星的兔 发布于 2023-3-16 10:20
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
Z4u3z1Lv6专家互助
发布于2023-3-16 10:23

用这个JS

Date.prototype.Format = function (fmt) { // author: meizz

  var o = {

    "M+": this.getMonth() + 1, // 月份

    "d+": this.getDate(), // 日

    "h+": this.getHours(), // 小时

    "m+": this.getMinutes(), // 分

    "s+": this.getSeconds(), // 秒

    "q+": Math.floor((this.getMonth() + 3) / 3), // 季度

    "S": this.getMilliseconds() // 毫秒

  };

  if (/(y+)/.test(fmt))

    fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));

  for (var k in o)

    if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));

      return fmt;

}

var a = this.getValue();

var location = this.options.location; //获取当前控件的位置

var cr = FR.cellStr2ColumnRow(location);

var col = cr.col; //列号

var ro = cr.row; //行号

var b=new Date().Format("yyyy-MM-dd hh:mm:ss");

  

  • 北极星的兔 北极星的兔(提问者) 不是,我是要取数据库的数值,不光光是时间。还有其他数据列 例如 电压、电流等
    2023-03-16 10:28 
  • 北极星的兔 北极星的兔(提问者) 点击插入,只是插入2023-3-16 10:12:44 这个时间的数据
    2023-03-16 10:29 
  • Z4u3z1 Z4u3z1 回复 北极星的兔(提问者) https://help.fanruan.com/finereport/doc-view-839.html MAP函数 https://help.fanruan.com/finereport/doc-view-853.html VALUE函数 https://help.fanruan.com/finereport/doc-view-850.html 单元格写公式,上边三个找一个就行
    2023-03-16 10:34 
  • 1关注人数
  • 191浏览人数
  • 最后回答于:2023-3-16 10:23
    请选择关闭问题的原因
    确定 取消
    返回顶部