gpt4 book ai didi

javascript - 通过 POST 调用 Rails 函数

转载 作者:行者123 更新时间:2023-12-02 20:24:16 24 4
gpt4 key购买 nike

我正在尝试将 php 脚本转换为位于 RoR 应用程序内的 ruby​​ 脚本。这是通过 RoR 应用程序外部的 Javascript block 完成的。我已成功通过 GET 调用 RoR 应用程序中的函数,但我想使用 POST 来执行此操作。

也就是说,这是有效的:

function foo() {
var uri = "http://localhost:3000/foo/bar?thing1=654&thing2=what";
xmlhttp = new XMLHttpRequest();
xmlhttp.open("get", uri, true);
xmlhttp.send();
}

这不会:

function foo() {
var uri = "http://localhost:3000/foo/bar";
var params = "thing1=654&thing2=what";
xmlhttp = new XMLHttpRequest();
xmlhttp.open("post", uri, true);
xmlhttp.send(params);
}

我需要做一些不同的事情才能使其与 POST 一起使用吗?

实际传递到 Controller 的参数是:{"controller"=>"foo", "action"=>"bar"}

更新

奇怪的是,根据 firebug 报告,由于某种原因它没有使用 POST 而是 OPTIONS。我写的方式有问题吗?

最佳答案

您可能必须发送正确的 Content-Type header 。

xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");

关于javascript - 通过 POST 调用 Rails 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5082758/

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