我从提交模块生成的cherrypy脚本中收到以下错误。
ValueError:页面处理程序必须返回字节。如果您想返回unicode,请使用tools.encode
我在配置中打开了tool.encode,但我仍然收到此错误。我允许用户通过jQuery Form Plugin上传内容。我有什么理由得到这个错误?
这是我的樱桃文件:
class Root(object):
@cherrypy.expose
def index(self)
return open('/home/joestox/webapps/freelinreg_static/index.html')
@cherrypy.expose
def submit(self, myfile):
cherrypy.session['myfile'] = myfile
data_name = myfile.filename
#Send back to JQuery with Ajax
#Put in JSON form
data_name= json.dumps(dict(title = data_name))
cherrypy.response.headers['Content-Type'] = 'application/json'
return data_name
cherrypy.config.update({
'tools.staticdir.debug': True,
'log.screen': True,
'server.socket_host': '127.0.0.1',
'server.socket_port': *****,
'tools.sessions.on': True,
'tools.encode.on': True,
'tools.encode.encoding': 'utf-8',
})
config = {
}
cherrypy.tree.mount(Root(), '/', config=config)
cherrypy.engine.start()
HTML:
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript' src='freelinreg_static/google.js'></script>
<script type='text/javascript' src='freelinreg_static/frontend.js'></script>
<script type='text/javascript' src='freelinreg_static/malsup.js'></script>
</head>
<body>
<form id="dataform" action="submit" method="post" enctype="multipart/form-data">
<input type="file" name="myfile" id="myFile"/>
<input type="submit" id="data_submit" value="Continue"/>
</form>
</body>
</html>
jQuery(frontend.js):
$(document).ready(function () {
(function () {
$('#dataform').ajaxForm({
url: "submit",
success: function (data) {
var $a_var = data['title'];
$('body').append($a_var);
}
});
return false;
})();
});
您需要在应用程序安装后重新排列全局配置更新:
config = {
}
cherrypy.tree.mount(Root(), '/', config=config)
cherrypy.config.update({
'tools.staticdir.debug': True,
'log.screen': True,
'server.socket_host': '127.0.0.1',
'server.socket_port': *****,
'tools.sessions.on': True,
'tools.encode.on': True,
'tools.encode.encoding': 'utf-8'
})
cherrypy.engine.start()
因为您在配置更新命令后调用了config = {},所以您将覆盖Root
应用程序的更新设置。
另外,将提交功能更改为:
@cherrypy.expose
@cherrypy.tools.json_out
def submit(self, myfile):
cherrypy.session['myfile'] = myfile
# Return dict, which will be autoconverted to JSON
# by the json_out tool (see decorator above)
return {'title': myfile.filename}
我的情况是从p2切换到p3后问题开始了。
它通过设置解决了
'tools.encode.text_only': False
在app全局配置中。
希望能帮助到你
嗨,人们在寻找答案。我有同样的问题,但在我的情况下,这个小小的补充解决了一切。
return <some-json>.encode('utf8')