我得到不同貨幣的價格,要顯示巴西R $ 我的格式不工作,並顯示如下:顯示價格
價格:1.15..000,00 R $
對於良好的柔韌性,我存儲的價格爲一個字符串:price=db.StringProperty(verbose_name="price")
我試圖實現自己的過濾器,並沒有奏效: {{ ad.price|separate }} R$
def separate(n, sep='.'):
ln = list(str(n))
ln.reverse()
newn = []
while len(ln) > 3:
newn.extend(ln[:3])
newn.append(sep)
ln = ln[3:]
newn.extend(ln)
newn.reverse()
return "".join(newn)
你能幫我嗎?我應該只是刪除過濾器?我應該強制執行一些正則表達式嗎?我的網站的鏈接是http://www.koolbusiness.com/servead/4252196
UPDATE:我使用的是像這些過濾器的一個考慮:
import locale
locale.setlocale(locale.LC_ALL, '')
def currency(value): # doesn't work
locale.setlocale(locale.LC_ALL, '')
return locale.currency(value, grouping=True)
register.filter(currency)
def currencyWithoutUsingLocale(value): # needs adjustment
value=float(value)
symbol = '$'
thousand_sep = ''
decimal_sep = ''
# try to use settings if set
try:
symbol = settings.CURRENCY_SYMBOL
except AttributeError:
pass
try:
thousand_sep = settings.THOUSAND_SEPARATOR
decimal_sep = settings.DECIMAL_SEPARATOR
except AttributeError:
thousand_sep = ','
decimal_sep = '.'
intstr = str(int(value))
f = lambda x, n, acc=[]: f(x[:-n], n, [(x[-n:])]+acc) if x else acc
intpart = thousand_sep.join(f(intstr, 3))
return "%s%s%s%s" % (symbol, intpart, decimal_sep, ("%0.2f" % value)[-2:])
register.filter(currencyWithoutUsingLocale)
「沒有工作」不是很有幫助。當你嘗試時發生了什麼? –
作爲一個字符串銷售每盎司的清單,可能還有其他我應該承認的組合。我沒有想到一個正則表達式或規則,不會讓某人不可能出售例如金屬每盎司 –