访问从 JQuery 传递到 Rails 控制器的变量

发布于 2024-11-09 07:24:10 字数 342 浏览 0 评论 0原文

我有这个 JQuery 代码:

    $("div.notification").live("click", function(){
        window.location=$(this).find("a").attr("href");
        var myId = $(this).attr("id");
        $.post("/videos/selected_notification.js", myId);
        return false;
    });

我希望能够从 post 请求命中的控制器内部访问 myId 。我该怎么做?

I have this JQuery code:

    $("div.notification").live("click", function(){
        window.location=$(this).find("a").attr("href");
        var myId = $(this).attr("id");
        $.post("/videos/selected_notification.js", myId);
        return false;
    });

I want to be able to access myId from inside my controller that the post request hits. How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城孤痞 2024-11-16 07:24:10

为您的 myId 值命名,您可以像任何其他 POST 参数一样将其从 params 中提取出来:

$.post("/videos/selected_notification.js", { id: myId });

然后,在控制器中:

id = params['id'] # Or params[:id] since params is a HashWithIndifferentAccess

Give your myId value a name and you can pull it out of params just like any other POST parameter:

$.post("/videos/selected_notification.js", { id: myId });

And then, in the controller:

id = params['id'] # Or params[:id] since params is a HashWithIndifferentAccess
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文