How can a filtered url be added to the request queue in scrapy? (if you don't want to yield directly)

I want to add the filtered url directly to the request request queue and let the scheduler determine its priority. However, the search does not seem to find relevant API for a long time. I looked at the source code of LxmlLinkExtractor and found that it finally returned unique_list (all_links), so I wondered what to do if I wanted to add url directly to the request queue.

Jun.25,2022

after analyzing the source code, we can see that the request links of request are all assigned by the scheduler, so you can directly yield

.
Menu