访问从 JQuery 传递到 Rails 控制器的变量
我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您的
myId
值命名,您可以像任何其他 POST 参数一样将其从params
中提取出来:然后,在控制器中:
Give your
myId
value a name and you can pull it out ofparams
just like any other POST parameter:And then, in the controller: