AttributeError: 'Queue' object has no attribute 'cancel_join_thread'
时间: 2023-07-30 07:04:52 浏览: 67
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是由于您在使用 `Queue` 对象时,尝试调用了 `cancel_join_thread` 方法,但是 `Queue` 对象并没有该属性。`cancel_join_thread` 方法是 `threading` 模块中的方法,用于取消线程的等待。请确保您正确地使用了 `Queue` 对象,并检查该对象是否真的需要调用 `cancel_join_thread` 方法。如果不需要使用该方法,可以直接移除相关代码。如果需要使用,可能需要使用其他适合的对象或方法来实现您的需求。
阅读全文