除了python中的COMError之外,还有其他困难。下面是我在AutoCAD中用来做一些事情的方法。

    def populate_drawing(self):
        nMeasurementsFinal = Feature_recognition.determine_OD_dims(Feature_recognition(), "C:\\Users\\buntroh\\Documents\\Rotoworks\\122508.csv")
        while True:
            try:
                for nObject in self.acad.iter_objects(None, None, None, False):
                    if hasattr(nObject, 'TextString'):
                        try:
                            nObject.TextString = nMeasurementsFinal[nObject.TextString]
                        except KeyError as e:
                            continue
            except COMError:
                self.acad.doc.SendCommand("Chr(3)")
            break


COMError异常是因为在脚本运行之前只要在AutoCAD中选择了某些内容,它就会返回COMError。但是,即使有例外,我仍然得到:

COMError: (-2147418111, 'Call was rejected by callee.', (None, None, None, 0, None))


当什么都没有选择并且脚本不需要处理COMError异常时,我得到:

NameError: global name 'COMError' is not defined


不知道该怎么办。我已经导入了商品类型,所以我不确定为什么未定义COMError。

最佳答案

同意以上评论之一,您需要

from comtypes import COMError


那么您的异常可能是这样的,假设错误:
COMError:(-2147418111,'呼叫被被叫方拒绝。',(无,无,无,0,无))

except COMError as ce:
    target_error = ce.args # this is a tuple
    if target_error[1] == 'Call was rejected by callee.':
        self.acad.doc.SendCommand("Chr(3)")

09-19 15:17