我想将python bool 值转换为JS的 bool 值文字。这就是我正在使用的:

store = dict(vat=True)

if store['vat']:
    store.update({'vat': 'true'})
else:
    store.update({'vat': 'false'})

有没有更冗长的方法来替换此代码段?

最佳答案

>>> store['vat'] = json.dumps(store['vat'])
>>> store
{'vat': 'true'}

关于python - 将python bool 值转换为javascript bool 文字的更简洁的方法是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7805994/

10-10 17:22