# 日期转化为2小时前，1分钟前等

记住获取时间的表达

```javascript
let now = new Date().getTime()
```

```javascript
function getDateDiff(dateTimeStamp){
 var now = new Date().getTime();
 var diffValue = now - dateTimeStamp;
 if(diffValue < 0){
  //若日期不符则弹出窗口告之
  //alert("结束日期不能小于开始日期！");
  }
 var monthC =diffValue/month;
 var weekC =diffValue/(7*day);
 var dayC =diffValue/day;
 var hourC =diffValue/hour;
 var minC =diffValue/minute;
 if(monthC>=1){
  result="发表于" + parseInt(monthC) + "个月前";
  }
  else if(weekC>=1){
  result="发表于" + parseInt(weekC) + "周前";
  }
  else if(dayC>=1){
  result="发表于"+ parseInt(dayC) +"天前";
  }
  else if(hourC>=1){
  result="发表于"+ parseInt(hourC) +"个小时前";
  }
  else if(minC>=1){
  result="发表于"+ parseInt(minC) +"分钟前";
  }else
  result="刚刚发表";
 return result;
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mm.ricky.moe/interview/inverview-record/tou-tiao-mian-jing/bi-shi/ri-qi-zhuan-hua-wei-2-xiao-shi-qian-1-fen-zhong-qian-deng.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
