-
來自
django.core.signing
此外,由於 JSON 僅支持字符串鍵,請注意在
request.session
中使用非字符串鍵將無法按預期工作:>>> # initial assignment >>> request.session[0] = 'bar' >>> # subsequent requests following serialization & deserialization >>> # of session data >>> request.session[0] # KeyError >>> request.session['0'] 'bar'
同樣,無法以 JSON 編碼的數據,例如像
'\xd9'
(引發UnicodeDecodeError
有關 JSON 序列化限製的更多詳細信息,請參閱編寫您自己的序列化程序部分。
本文介紹 django.contrib.sessions.serializers.JSONSerializer
的用法。
聲明
class serializers.JSONSerializer
相關用法
- Python Django JSONCatalog用法及代碼示例
- Python JSON轉CSV用法及代碼示例
- Python JSON轉string用法及代碼示例
- Python Django JSONObject用法及代碼示例
- Python Django JSONBAgg.ordering用法及代碼示例
- Python JSON轉dictionary用法及代碼示例
- Python Django JavaScriptCatalog.packages用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python torch.distributed.rpc.rpc_async用法及代碼示例
- Python torch.nn.InstanceNorm3d用法及代碼示例
- Python sklearn.cluster.MiniBatchKMeans用法及代碼示例
- Python pandas.arrays.IntervalArray.is_empty用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python numpy.less()用法及代碼示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python Django File.save用法及代碼示例
- Python Sympy Permutation.list()用法及代碼示例
- Python dask.dataframe.Series.apply用法及代碼示例
- Python networkx.algorithms.shortest_paths.weighted.all_pairs_dijkstra_path用法及代碼示例
- Python scipy.ndimage.binary_opening用法及代碼示例
- Python pyspark.pandas.Series.dropna用法及代碼示例
- Python torchaudio.transforms.Fade用法及代碼示例
- Python dask.dataframe.to_records用法及代碼示例
- Python arcgis.gis._impl._profile.ProfileManager.save_as用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.sessions.serializers.JSONSerializer。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。