假设我有一个模型:事物
class Thing < ActiveRecord::Base
attr_accessible :name, :url
在我的咖啡脚本中,我有一个生成 JSON 对象数组的函数,例如:
[{"url":"https://www.example.com/1","name":"1"},
{"url":"https://www.example.com/2","name":"2"},
{"url":"https://www.example.com/3","name":"3"}]
当用户单击Thing索引页面中的按钮时,将调用该函数。
我想要的是根据咖啡脚本函数生成的 JSON 对象创建多个事物资源。
最好的方法是什么?我正在考虑使用 Ajax 重定向到Thing的创建操作,但不确定这是最好的方法。
谢谢