#自定義格式
x = ''.format('dog')
print(x)
class date:
def __init__(self,year, mon,day):
self.year = year
self.mon = mon
self.day = day
d1 = date(2016,12,14)
x = ''.format(d1)
y = '::'.format(d1)
z = '--'.format(d1)
print(x)
print(y)
print(z)
#定製format
#利用字典定義所需的格式
format_dic = ',
'm-d-y':'--',
'y:m:d':'::'
}class date:
def __init__(self,year, mon,day):
self.year = year
self.mon = mon
self.day = day
def __format__(self,format_sepc):
print('我執行了')
print('-->',format_sepc)
#判斷沒有輸入格式以及輸入格式不在字典範圍內,使用預設格式
if not format_sepc or format_sepc not in format_dic:
format_sepc='ymd'
fm = format_dic[format_sepc]
#返回格式化好後的日期
return fm.format(self)
d2 = date(2016,12,14)
format(d2)
print(format(d2, 'ymd'))
print(format(d2, 'm-d-y'))
print(format(d2, 'm:d-y'))
自定義Tomcat錯誤頁面 舉例
為了獲得很好的使用者感受,不應當向使用者暴露404這樣的頁面的。tomcat不像iis提供了各種型別的錯誤頁,如果tomcat發生錯誤就會顯示千篇一律的錯誤頁面。其實我們可以通過修改其配置檔案,從而自定義設定其錯誤頁面的顯示。1 在網上隨便搜幾個404頁面 2 確保404頁面大於512位元組,這樣瀏...
自定義Tomcat錯誤頁面 舉例
為了獲得很好的使用者感受,不應當向使用者暴露404這樣的頁面的。tomcat不像iis提供了各種型別的錯誤頁,如果tomcat發生錯誤就會顯示千篇一律的錯誤頁面。其實我們可以通過修改其配置檔案,從而自定義設定其錯誤頁面的顯示。1 在網上隨便搜幾個404頁面 2 確保404頁面大於512位元組,這樣瀏...
自定義日期(時間)格式
效果 我們把它輸入到頁面上並利用定時器 setinterval 實時更新 1.首先把上例中自定義日期物件的函式封裝到乙個tool.js檔案裡,用的時候直接呼叫即可。tool.js 內容如下 1 function showtime 1213 單數變雙數 14function doublenum num...