Paperclip在has_many association

时间:2016-02-25 00:03:10

标签: ruby-on-rails ruby ruby-on-rails-4 paperclip has-many

我有这个型号: 产品 - > Products_Images。

我可以从上传图像的表单中添加多个图像,这是我的电脑。我想从网址而不是本地图片中添加图片。

Paperclip添加了此功能: https://github.com/thoughtbot/paperclip/wiki/Attachment-downloaded-from-a-URL 但我不知道如何在has_many协会中应用它。

我尝试在ProductImages模型中添加一个方法,并在创建产品后为每个URL调用它。我不知道是否必须在Product model中直接使用此方法。

我应该在哪里尝试使用Paperclip维基的方法?

1 个答案:

答案 0 :(得分:0)

这是一个伟大的要点(我没有写)。它应该让你到那里:https://gist.github.com/jgv/1502777

super.onCreate(savedInstanceState);
setContentView(R.layout.main);

ListView listView = (ListView) findViewById(R.id.listView);  

List<Weather> weather= null;  
try
{
    // Get the data from the XML stream as a string
    result =  sourceListingString(sourceListingURL);

    XMLPullParserHandler parser = new XMLPullParserHandler();  
    weather = parser.parse(new StringReader ( result ));
    ArrayAdapter<Roadwork> adapter =new ArrayAdapter<Weather>
    (this,android.R.layout.simple_list_item_1, roadworks);  
    listView.setAdapter(adapter);
    }catch (IOException e) {e.printStackTrace();}

}

归功于作者。

将来,通常最好在尝试解决问题时发布代码。