How to pass the data captured by scrapy to item if it is an array

that is, when scrapy grabs data, if the captured data is how to pass the array to item?

how to solve this

Sep.01,2021

item can't you just set a property to associate this array? For example, item.list = array. When you read it later, read the array from the attribute and manipulate it

Menu