gpt4 book ai didi

jquery - Rails,发送 json 参数

转载 作者:数据小太阳 更新时间:2023-10-29 07:38:14 24 4
gpt4 key购买 nike

我必须使用需要包含 json 字符串的单个参数的 API:

def function
data = params['data']
# Do thing with the json string data
#... More code
end

配置文件:

match "/thing" => "controller#function", :via => :post 

我已经搜索并阅读了文档,但我似乎无法找到执行此操作的方法。我用 form_for 或 form_tag 函数搜索过,这似乎是不可能的。我已经使用 remote => true 尝试了这两种方法,但它没有达到我想要的效果。

我也尝试使用 jquery $.ajax 来执行此操作,但它以 json 格式而不是 json 字符串发送参数。

有没有办法做到这一点?

谢谢

最佳答案

尝试访问 json 对象

data = params[:data].first[0]

包含 [0] 是为了读取 json 格式对象的第一个元素,假设它没有嵌套在另一个 json 对象中。

关于jquery - Rails,发送 json 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12922140/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com