仍然是 Python 的初学者,所以请善待 :) 仅供参考:Python 2.7.5、PySide 1.1.2、OSX 10.8 简单问题。我有这个功能:
def openFileDialog(self):
import os
path, _ = QtGui.QFileDialog.getOpenFileName(self, "Open File", os.getcwd())
self.label.setText(path)
print(path)
我想在另一个不属于同一个类的函数中使用这个“路径”......我尝试了不同的东西来在我的另一个函数中显示这个路径,例如,我试过
print(testWindow.openFileDialog.path)
但它没有用。你会怎么做这个……?谢谢!