具有移交函数参数的方法调用

时间:2018-09-06 13:35:43

标签: python pyqt widget pyqt5

我目前正在使用基于Qt,pyqt和Python作为我的语言的UI。我想知道是否有任何方法可以定义一个方法,该方法可以交出稍后在函数调用中使用的变量。目前,我正在解决此问题:

def loader(self, filePath, id):
#firstTable, secondTable and thirdTable are three different Table Widgets in the UI
    if id == "1":
        tab = self.ui.firstTable
    elif id == "2":
        tab = self.ui.secondTable
    elif id == "3":
        tab = self.ui.thirdTable

    tab.clearContents()
    with open(filePath, "r", encoding="utf-8") as file:
        rowCount = tab.rowCount()
        columnCount = tab.columnCount()
        csvReader = csv.reader(file, delimiter=",", quotechar="'")
        for row in csvReader:
            if csvReader.line_num > rowCount:
                tab.insertRow(csvReader.line_num - 1)
            for i in range(0, columnCount):
                tab.setItem((csvReader.line_num - 1), i, QtWidgets.QTableWidgetItem(row[i]))
    tab.sortItems(1)

我想以某种方式解决它,但是我只是不知道如何去做,并且在研究这个问题时没有找到任何解决方案:

def loader(self, filePath, widget):
#variabel widget would be the corresponding object name I want to adress, like firstTable, secondTable, thirdTable
#...
    self.ui.widget.clearContents()
#...
    self.ui.widget.rowCount()

我希望我能正确解释我的问题,并且有人可以帮助我。 谢谢!

编辑:这是我当前调用加载程序的方式:

 self.loader("file.csv", "1")

1 个答案:

答案 0 :(得分:0)

如果widget是某个类cl中的方法,则可以这样调用loader:

ld = cl.loader(filePath, cl.widget)

然后在加载程序中使用它的地方

widget.clearcontents(self)

请记住,方法只是具有隐含第一个参数(即类引用)的函数。