如何在後端取得系統變數(如今天及時間等)?
舉例:
//後端servermethod的取值
this.getDateValue('today').Format("yyyy/MM/dd");  // 今天
this.getDateValue('firstday').Format("yyyy/MM/dd"); // 本月第一天
new Date().Format("yyyy/MM/dd hh:mm:ss"); //取得目前時間
 
//後端在UpdateComp的事件裡則用
this.dataModule.getDateValue('today').Format("yyyy/MM/dd"); 
this.dataModule.getDateValue('firstday').Format("yyyy/MM/dd");
 
系統變數如下:
變數名稱        內容
today         今天日期  
todayc8     今天日期(varchar8)    
firstday    本月首日  
lastday    本月末日  
firstdaylm  上月首日  
lastdaylm  上月末日  
firstdayty  本年首日  
lastdayty    本年末日  
firstdayly  去年首日  
lastdayly    去年末日