【发布时间】:2018-01-31 17:07:11
【问题描述】:
我想在我的 shopify 商店中查找所有商品。我找到了这段代码,它给了我产品 ID。
xxx = shopify.Product.find(limit=50, page=1)
我要找的是标题…………
我试过了
xxx = shopify.Product.title(limit=50, page=1)
xxx = shopify.Product.title(limit=50, page=1).title()
xxx = shopify.title(limit=50, page=1)
xxx = title(limit=50, page=1)
我想在输出窗口上看到什么。
'This is the title of the product' <- this is what I want to extract
我现在得到的是
product(322940174383) <- bad I want the title not product id
【问题讨论】: