我正在尝试使用当前时间检查存储的时间并检查更大的时间。为此,我向 url 发出请求以获取时间……在这种情况下,当地时间对我没有帮助。
var xhr = Ti.Network.createHTTPClient({
onerror:function(e){
alert( e.error );
},
onload:function(e){
var result = this.responseText;
var storedTime = Ti.App.Properties.getString( 'stored' );
if( result > storedTime ){
Ti.API.info( 'result is bigger than storedTime' );
}else if( result < storedTime ){
Ti.API.info( 'storedTime is bigger than result' );
}
}
})
xhr.open( 'GET', url );
xhr.send();
我的问题是......如果我storedTime
喜欢23:00:00
并且我的result
时间01:00:00
在我身上,如果它说我storedTime
更大,因为 23 大于 1,但在白天 1 AM 大于 23 PM 我怎么能假设它01:00:00
大于23:00:00
?谢谢你。