0

我正在创建一个应用程序,用于将图像上传到指定的服务器。我已经在 Qt Designer 中创建了我的 GUI,一切正常我只是被困在我知道很简单的东西上。似乎无法绕过它。

这个想法是让脚本通过并查看有多少文本字段与图像路径一起归档 - 从那里获取每个路径,然后将每个路径上传到服务器。我可以让它只用一个盒子就可以了,但是当我尝试为这个过程创建一个循环时,它就会分崩离析。我基本上需要用每个不同的路径返回“全名”。这只是一个片段,但你明白了..

这个概念似乎很简单,我已经用我能找到和想到的许多方式重写了它。任何帮助都是极好的。我应该使用列表来代替吗?

        # count how many images there are going to be
    if not self.imgOnePathLabel.text().isEmpty():
        totalImages = 1
        # gets the path from IMAGE 1 box
        image1 = self.imgOnePathLabel.text()
        fullname = '%s' % image1
    if not self.imgTwoPathLabel.text().isEmpty():
        totalImages = 2
        image2 = self.img2PathLabel.text()
        fullname = '%s' % image2
    if not self.imgThreePathLabel.text().isEmpty():
        totalImages = 3
        imageThreePath = self.imgThreePathLabel.text()
        fullname = '%s' % imageThreePath
    try:
        for x in range(1,totalImages,1):
            # split end file from the file path
            name = os.path.split(fullname)[1]
            f = open(fullname, "rb")
            # store our selected file
            ftp.storbinary('STOR ' + name, f)
            msg = "Sent <font color=green>" + name + "</font>"
            self.logBrowser.append(msg)
            f.close()

    finally:
        msg = "<font color=green>" "Ok" "</font>"
        self.logBrowser.append(msg)
4

3 回答 3

2

您遇到的问题是您分配给变量fullname三次,每次都覆盖它。因此,当您进入 for 循环时,如果最后一个字段已设置,则只有最后一个文件名可用,否则您将一无所获。您需要一份全名列表而不是一个变量的说法是正确的。您需要以下内容:

    fullnames = []
    imageLabels = [self.imgOnePathLabel, self.imgTwoPathLabel,
            self.imgThreePathLabel]
    for imageLabel in imageLabels:
        if imageLabel.text():
            image = self.imgOnePathLabel.text()
            fullnames.append('%s' % image)
    try:
        for fullname in fullnames:
            # split end file from the file path
            name = os.path.split(fullname)[1]
            f = open(fullname, "rb")
            # store our selected file
            ftp.storbinary('STOR ' + name, f)
            msg = "Sent <font color=green>" + name + "</font>"
            self.logBrowser.append(msg)
            f.close()
    finally:
        msg = "<font color=green>" "Ok" "</font>"
        self.logBrowser.append(msg)
于 2009-11-17T20:14:45.827 回答
0

除了范围需要 +1 才能达到 #3 的问题(参见 Vincent R 的评论),

(一个)问题是全名变量被非空标签的每个新案例覆盖。

很难评论代码来修复它,即我想建议并重新组织一下。例如通过引入一个函数来提取给定图像的名称/路径,给定 UI 对象;这样可以避免一些重复。然后,这样的函数或它的调用者会将每个新的全名添加到其中的列表中,然后上传循环可以使用该列表。

请参阅 Tendayi Mawushe 的解决方案,该解决方案尊重原始结构,但按照建议引入了一个列表。顺便说一句,这个列表可以作为循环的基础进行迭代,而不是依赖 range() 函数,这更像是 Pythonic(这消除了修复缺少 #3 的问题的需要)。虽然有时很方便,但使用 Python,这些数字范围驱动的循环通常是重新审视设计的邀请。

于 2009-11-17T20:14:29.197 回答
0

原始代码的另一个问题是,如果标签 1 和 3 不是空白,但标签 2 是,totalImages即使您只有两条路径,也会设置为 3。

此外,此代码中有一个错字(“Two”与“2”):

if not self.imgTwoPathLabel.text().isEmpty():
    image2 = self.img2PathLabel.text()

而且我相信您不需要字符串替换'%s' % image

您可以像这样稍微压缩您的代码(并解决您的问题):

# this is a list of references to your PyQt4 label objects
imagePathLabels = [self.imgOnePathLabel, 
                   self.imgTwoPathLabel, 
                   self.imgThreePathLabel]

try:
    for label in imagePathLabels:
        if not label.text().isEmpty():
            image_path = label.text()
            image_name = os.path.split(image_path)[1]
            f = open(image_path, "rb")
            ftp.storbinary('STOR ' + image_name, f)
            msg = "Sent <font color=green>" + name + "</font>"
            self.logBrowser.append(msg)
            f.close()
finally:
    msg = "<font color=green>" "Ok" "</font>"
    self.logBrowser.append(msg)
于 2009-11-17T21:01:57.620 回答