2017-04-21 89 views
0

我如何獲得falcon中的req作爲json而不是字符串作爲單獨的鍵值對。構建API的獵鷹

如果{「A:213」,「B」:32435} 我如何確保被通過,那麼獲得的

回答

0

不知道價值,如果這就是你問什麼,但你可以改變你原始的請求(REQ),以JSON使用:

if req.content_length: 
    doc = json.load(req.stream) 
0

我想下面的代碼將幫助您:

json_data = json.loads(req.stream.read()) 

或者如果你想指定的輸入數據的特定編碼格式。

json_data = json.loads(req.stream.read().decode('utf8')) 

請讓我知道你需要進一步澄清。

0

使用

stream = req.bounded_stream.read() 

stream = req.stream.read() 

我創建了一個BodyParser類作爲中間件:

class BodyParser(object): 
    def __init__(self, ctx): 
     self.ctx = ctx 
    def process_request(self, req, resp): 
     if req.method.upper() in ['POST', 'PUT', 'PATCH']: 
      stream = req.stream.read() 
      if not stream: 
       req.context['body'] = None 
       return 
      req.context['body'] = json.loads(stream) 

希望它可以幫助