使用 shopify gem 我正在尝试将产品添加到自定义集合中。
c = ShopifyAPI::CustomCollection.first(:title => "Man")
p = ShopifyAPI::Product.find(95448374)
如果我尝试:
c.products << p
c.save
=> true
但该产品并未添加到自定义集合中。
我也试过
p.collections << c
p.save
=> true
但是产品仍然没有添加到集合中……为什么?
任何帮助是极大的赞赏!
奥古斯托