码迷,mamicode.com
首页 > Web开发 > 详细

ladon生成xmlrpc标准的webservice时报错解决办法

时间:2021-02-03 10:50:16      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:字符串拼接   style   charset   script   lam   rip   src   安装   site   

技术图片

 

 生成xmlrpc的描述,报错,是因为一个代码bug导致,在ladon的安装目录..\Python\Python39\site-packages\ladon\interfaces 下,找到文件xmlrpc.py,打开编辑

在156行的原代码:

for type_class, type_info in type_dict.iteritems():

  修改如下:

for type_class, type_info in type_dict.items():

保存后,问题解决。

 

在198行的原代码:

self._get_type_name(method_info[rtype][0])

修改如下:

self._get_type_name(method_info[rtype])

 

对于wsgi_application文件中的报错,是因为代码的一个bug导致,字符串和bytes类型无法进行字符串拼接导致。

在521行源代码如下:

output += dispatcher.iface.description(service_url, charset, **dict(
                        map(lambda x: (x[0], x[1][0]), query.items())))

替换为如下代码:

                    t = type(dispatcher.iface.description(service_url, charset, **dict(
                        map(lambda x: (x[0], x[1][0]), query.items()))))
                    if str(t) == "<class ‘bytes‘>":
                        output += bytes.decode(dispatcher.iface.description(service_url, charset, **dict(
                            map(lambda x: (x[0], x[1][0]), query.items()))))
                    else:
                        output += dispatcher.iface.description(service_url, charset, **dict(
                        map(lambda x: (x[0], x[1][0]), query.items())))

 

ladon生成xmlrpc标准的webservice时报错解决办法

标签:字符串拼接   style   charset   script   lam   rip   src   安装   site   

原文地址:https://www.cnblogs.com/hyyx/p/14363584.html

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