Pyspider crawler result gets data-bgimage attribute value

 <a href="testtese" target="_blank" data-bgimage="testtese"></a>

the a tag acquired by the crawler contains href, target, data-bgimage and other attributes, which can be obtained with this.attr.href and this.attr.target, but this.attr.data-bgimage will report a global name "bgimage" is not defined error and solve

.
Mar.04,2021

use this.attr ["data-bgimage"]

Menu