首頁 >後端開發 >Python教學 >Django接受前端資料的幾種方法總結

Django接受前端資料的幾種方法總結

黄舟
黄舟原創
2016-12-15 09:29:482054瀏覽

背景

測試工具箱寫到一半,今天遇到了一個前後端資料互動的問題,就一起做一下整理。

環境

--------------------------------------------- -----------

版本相關

作業系統:Mac OS X EI Caption

Python版本:2.7

IDE:PyCharm

Django: 1.8.2

----- -------------------------------------------------- --

註: 我測試的是Get方法,POST方法也同樣適用

字符型

字符型的數據相對好獲取,前端傳遞的方法如下:

sendData = {
  "exporttype": exporttype,

  "bugids": bugids,

  "test": JSON.stringify({"test": "test"})

};

   使用exporttype = request.GET.get("exporttype")

就能正常的取得到這個資料了。

注意: 在Python2.7中資料是unicode編碼的,如果要使用,有時需要進行轉str

結果範例:

Excle

數組型

Excle

數組型

獲取組數型的資料組如果使用取得字串的資料的方法,打出的結果是None。我們要使用這個方法:

bugids = request.GET.getlist("bugids[]")

這樣取得的資料就是陣列型別。

注意: 取得的陣列中的元素是unicode編碼的,在某些時候使用需要轉編碼

結果範例:

•傳遞的url

[14/Jul/2016 11:00:41]"GET /testtools/exportbug/?exporttype=Excle&bugids%5B%5D=102&bugids%

•傳遞的資料

[u'102', u'101', u'100', u'99', u'98', u'97', u'96', u'95', u'94', u'93', u'92', u'91', u

典型

字典型資料其實可以當成字串資料來處理,取得到對應字串後使用JSON模組做一下格式化就行了。

對於前端來說,傳遞字典型的數據就是傳遞JSON數據,所以使用的方法是:

"test": JSON.stringify({"test": "test"})

結果範例:

{"test":"test"}

相關原始碼

•Get方法

Get方法是wsgi裡面的一個方法。

def GET(self):
    # The WSGI spec says 'QUERY_STRING' may be absent.
    raw_query_string = get_bytes_from_wsgi(self.environ, 'QUERY_STRING', '')
    return http.QueryDict(raw_query_string, encoding=self._encoding)

   

最後回傳的是一個http.QueryDict(raw_query_string, encoding=self._encoding)http的原始數據,而QueryDict則繼承於MultiValueDict ,所以我們直接看MultiValueDict就好了。

•MultiValueDict

其實原始碼看起來並不難。

def get(self, key, default=None):
    """
    Returns the last data value for the passed key. If key doesn't exist
    or value is an empty list, then default is returned.
    """
    try:
      val = self[key]
    except KeyError:
      return default
    if val == []:
      return default
    return val
  
  def getlist(self, key, default=None):
    """
    Returns the list of values for the passed key. If key doesn't exist,
    then a default value is returned.
    """
    try:
      return super(MultiValueDict, self).__getitem__(key)
    except KeyError:
      if default is None:
        return []
      return default
  
  def __getitem__(self, key):
    """
    Returns the last data value for this key, or [] if it's an empty list;
    raises KeyError if not found.
    """
    try:
      list_ = super(MultiValueDict, self).__getitem__(key)
    except KeyError:
      raise MultiValueDictKeyError(repr(key))
    try:
      return list_[-1]
    except IndexError:
      return []

   

getlist方法也就是把資料全部整合一下,回傳回來。

以上這篇Django接受前端資料的幾種方法總結就是小編分享給大家的全部內容了,希望能給大家一個參考,更多相關文章請關注PHP中文網(www.php.cn)! 



🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn