我必须使用一个需要包含 json 字符串的单个参数的 API:
def function
data = params['data']
# Do thing with the json string data
#... More code
end
配置.rb:
match "/thing" => "controller#function", :via => :post
我已经搜索并阅读了文档,我似乎无法找到如何做到这一点的方法。我用 form_for 或 form_tag 函数搜索过,这似乎是不可能的。我已经使用 remote => true 尝试了这两种方法,但它并没有达到我想要的效果。
我也尝试使用 jquery $.ajax 来执行此操作,但它以 json 格式而不是 json 字符串发送参数。
有没有办法做到这一点?
谢谢