search

Home  >  Q&A  >  body text

scrapy - Python 的回调问题

大家讲道理大家讲道理2910 days ago272

reply all(2)I'll reply

  • 大家讲道理

    大家讲道理2017-04-18 10:07:24

    1. You can use closures to achieve it. The general idea is as follows:

    def out():
        class data:
            count = 0
        def inner(l):
            for i in l:
                data.count += 1
            print data.count
        return inner
    
    f = out()
    f([1,2,3])
    f([23,34,3,43,4]) 
    1. can be marked with a global variable

    reply
    0
  • 巴扎黑

    巴扎黑2017-04-18 10:07:24

    Because the framework processes the returned data, changing it to a closure format seems like a big step. For this requirement, I mainly want to reduce the frequency of calls through count. Now I use another method instead, which is to use the current time as a reference. This is equivalent to a global variable.

    reply
    0
  • Cancelreply