嗨我正在使用音乐播放器应用程序,我需要在视频控制器jquery中传递我的json对象值我的jquery代码是
$("#video-play-button").click(function() {
$.getJSON("../videos.json",function(data){
$.each(data,function(index,video){
as=JSON.stringify(video)
myPlaylist3.add({m4v:$(this).attr("video_url"),title:$(this).attr("video_identifier")});
})
});
});
我的html链接就像这样
<%= link_to 'play' , video_path( :id => video.id, :format => :json ) %>
现在我想在json中获取json值,就好像我点击了x视频&#34; ../ videos / x.json&#34;这该怎么做?
答案 0 :(得分:1)
使用url作为Window.location.pathname,这将提供您必须播放的链接