博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xadmin datetime 类型报错 unsupported format characte
阅读量:5089 次
发布时间:2019-06-13

本文共 758 字,大约阅读时间需要 2 分钟。

  • 定位到错误为xadmin.views.list.py中的
@propertydef label(self):    text = mark_safe(        self.text) if self.allow_tags else conditional_escape(self.text)    if force_text(text) == '':        text = mark_safe(' ')    for wrap in self.wraps:         #就是下面这叫抛旳异常         text = mark_safe(wrap % text)    return text
  • 试了试print('<a href="/emmm/emm/2019-07-29%2010:00:00/update/">%s</a>' % '2019年7月29日 10:00'), 发现会报错
  • 修改源码
@propertydef label(self):    text = mark_safe(        self.text) if self.allow_tags else conditional_escape(self.text)    if force_text(text) == '':        text = mark_safe(' ')    for wrap in self.wraps:        #改成下面这样        text = mark_safe(wrap.replace('%s', '{}').format(text))    return text
  • 奶丝

转载于:https://www.cnblogs.com/edhg/p/11262410.html

你可能感兴趣的文章