django 在 wistia 中使用 ajax

django using ajax in wistia

我构建了我的 django 应用程序来获得观看视频的时间。

我从 wistiaApi 接收数据并从警报中确认视频时间。

我在video_time='10'时确认发送信号,而不是video_time = reuqest.POST.get('video_time'),但是使用ajax,有没有成功信息。问题在哪里?

查看

if request.method == 'POST' and request.is_ajax():
        video_view.send(
             request.user,
             video_time=request.POST.get('video_time'),
             primary_obj_video=obj,
             secondary_obj_video=cat
        )

模板

wistiaEmbed = jQuery(".wistia_embed")[0].wistiaApi;

var time = wistiaEmbed.duration();

alert(time);

$.ajax({
    type: "POST",
    data: {video_time: time},
    success: function(){
        alert ("hi");
    }
});

urlajax() 中丢失:

$.ajax({
   url: '/your_url/', #<-----------------
   type: "POST",
   data: {video_time: time},
   success: function(){
    alert ("hi");
   }
});