来自lua

时间:2017-03-28 10:27:54

标签: date lua utc

我在将lua日期转换为时间戳然后从中获取原始日期时遇到问题。它适用于非UTC日期,但不适用于UTC。

目前我的示例代码是:

local dt1 = os.date( "*t" );
print( dt1.hour );

local dt2 = os.date( "*t", os.time( dt1 ) );
print( dt2.hour );

print( "-=-=-" );

local dt1 = os.date( "!*t" );
print( dt1.hour );

local dt2 = os.date( "!*t", os.time( dt1 ) );
print( dt2.hour );

local dt2 = os.date( "*t", os.time( dt1 ) );
print( dt2.hour );

产生输出:

12
12
-=-=-
10
9
11

所以,在第二部分中,在使用os.time( os.date( "!*t" ) )获取时间戳之后;我不知道如何获得原始日期。我做错了什么?

3 个答案:

答案 0 :(得分:5)

使用Lua中的“日期表”

dt成为“日期表” 例如,os.date("*t")返回的值是“日期表”。

如何规范化“日期表”
例如,在当前时间加1.5小时后
local dt = os.date("*t"); dt.min = dt.min + 90
你需要规范化表格字段。

function normalize_date_table(dt)
   return os.date("*t", os.time(dt))
end

此函数返回新的日期表,该日期表与其参数dt相同,无论dt的内容含义如何:是否包含本地或GMT时间。

如何将Unix时间转换为“本地日期表”

dt = os.date("*t", ux_time)

如何将Unix时间转换为“GMT日期表”

dt = os.date("!*t", ux_time)

如何将“本地日期表”转换为Unix时间

ux_time = os.time(dt)

如何将“GMT日期表”转换为Unix时间

-- for this conversion we need precalculated value "zone_diff"
local tmp_time = os.time()
local d1 = os.date("*t",  tmp_time)
local d2 = os.date("!*t", tmp_time)
d1.isdst = false
local zone_diff = os.difftime(os.time(d1), os.time(d2))
-- zone_diff value may be calculated only once (at the beginning of your program)

-- now we can perform the conversion (dt -> ux_time):
dt.sec = dt.sec + zone_diff
ux_time = os.time(dt)

答案 1 :(得分:1)

我发现这个日期,时间和时区的唯一解决方案是使用自定义c-build方法:

例如,要检索所需格式的字符串,我使用此方法:

const { width, height } = Dimensions.get('window');
export default class CustomApp extends Component {

  componentDidMount() {
    let scrollValue = 0;
    setInterval(function(){
      scrollValue = scrollValue + width;   // width = screen width 
      _scrollView.scrollTo({x: scrollValue}) 
    }, 3000);
  }
  render() {
    return (
     <View>
       <ScrollView 
        ref={(scrollView) => { _scrollView = scrollView; }}
        horizontal={true} pagingEnabled={true} 
        >
          <Image source={require('./1.jpg')} style={{height, width}} />
          <Image source={require('./2.jpg')} style={{height, width}} />
          <Image source={require('./1.jpg')} style={{height, width}} />
          <Image source={require('./2.jpg')} style={{height, width}} />
       </ScrollView>
       <View style={{ position: 'absolute'}}>
         <Text>Page Content</Text>
      </View>
     </View>
    );
  }
}

我只会这样建议。

答案 2 :(得分:1)

你没有做错任何事。

Lua使用ISO C和POSIX日期和时间函数。特别是,os.time使用mktime,它只根据环境变量TZ中的当前时区设置来解释输入结构。不幸的是,这些标准没有提供根据GMT / UTC解释输入结构的功能。