推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
caizixian
V2EX  ›  Python

大家怎么解决 Web 表单中的时间与 datetime 的对应

  •  
  •   caizixian ·
    caizixian · Mar 18, 2015 · 2496 views
    This topic created in 4097 days ago, the information mentioned may be changed or developed.
    前端放个时间/日期选取控件什么的,大家怎么解决这两者的对应关系
    2 replies    2015-03-19 08:57:40 +08:00
    tidewind
        1
    tidewind  
       Mar 18, 2015
    统统都是时间戳
    def str2timestamp(datetime_str,format="%Y-%m-%d %H:%M"):
    """
    转换字符串时间到时间戳.
    """
    timeArray = time.strptime(datetime_str, format)
    return time.mktime(timeArray)
    wwek
        2
    wwek  
       Mar 19, 2015
    全用时间戳
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1081 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 29ms · UTC 23:29 · PVG 07:29 · LAX 16:29 · JFK 19:29
    ♥ Do have faith in what you're doing.