欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

tornado 跨域

程序员文章站 2022-07-15 12:13:39
...

跨域

跨域 解决方式

    def set_default_header(self):
        # 后面的*可以换成ip地址,意为允许访问的地址 一定要使用ip地址 不能使用*  使用*任然会出现跨域问题
        self.set_header('Access-Control-Allow-Origin', '192.168.1.113')
        self.set_header('Access-Control-Allow-Headers', 'x-requested-with')
        self.set_header('Access-Control-Allow-Methods', 'POST, GET, PUT, DELETE')

套接字重复解决方式

打开任务管理器 结束Python进程 是Python进程不是pycharm

tornado 跨域

相关标签: tornado