process_index = self.config_text.indexOf("process=") 报错AttributeError: 'str' object has no attribute 'indexOf'
时间: 2023-12-01 13:02:51 浏览: 111
对象不支持indexOf属性或方法的解决方法(必看)
在 Python 中,字符串没有 `indexOf` 方法。相应的方法是 `find`。所以你需要将该行代码修改为:
```
process_index = self.config_text.find("process=")
```
这样就可以找到 `process=` 子串在 `self.config_text` 中的位置了。
阅读全文