码迷,mamicode.com
首页 > 编程语言 > 详细

函数计算的 Python手册小问题

时间:2018-07-08 23:07:50      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:event   png   .net   介绍   3.2   text   let   handlers   lib   

函数计算的 Python手册小问题

今天跟着 函数计算 Python 入门手册 一起做,被卡在下图这里报错。在关于 WSGI 普通入口函数介绍中:
技术分享图片

 {
   "errorMessage": "'NoneType' object has no attribute 'split'",
   "errorType": "AttributeError",
   "stackTrace": [
      [
         "File \"/var/fc/runtime/python2.7/src/server.py\"",
         "line 276",
         "in do_POST",
         "wsgi_handler.run(application)"
      ],
      [
         "File \"/usr/local/lib/python2.7/wsgiref/handlers.py\"",
         "line 92",
         "in run",
         "self.close()"
      ],
      [
         "File \"/usr/local/lib/python2.7/wsgiref/simple_server.py\"",
         "line 33",
         "in close",
         "self.status.split(' ',1)[0], self.bytes_sent"
      ]
   ]
} 

参考 简单的WSGI例子 - CSDN 加入这句 context(‘200 OK‘, [(‘Content-Type‘, ‘text/html‘)])

def handler(event, context):
    context('200 OK', [('Content-Type', 'text/html')])
    return '<h1>Hello, web!</h1>'

即可。

函数计算的 Python手册小问题

标签:event   png   .net   介绍   3.2   text   let   handlers   lib   

原文地址:https://www.cnblogs.com/aubucuo/p/fc1.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!