为什么时间戳参数不随请求一起传递?
Why doesn't the timestamp parameter get passed along with the request?
对于一个请求,需要传递四个参数,其中只有三个被传递。参数 timestamp
没有被传递。这可能是什么原因?
$.ajax( {
url : 'http://localhost:8081/Football/FeFeed',
data : {
playernumber : $('#playernumber_goal').val(),
timestamp : $('#match').get(0).currrentTime,
event : 'goal',
team : 'team-name'
},
type : 'GET'
}) .done(function(message){
}).fail(function(message) {
});
Html #匹配:
<video id="match" width="440" controls>
<source src="match.mp4" type="video/mp4">
<source src="match.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
组成的URL是:http://localhost:8081/Football/FeFeed?playernumber=22&event=goal&team=team-name
编辑:我可以传递静态变量,例如 100.232
所以如果你想打发视频时间,试试这个。
var tempVideo= document.getElementById("match");
var tempTime=tempVideo.currentTime;
在你的 ajax post
timestamp : tempTime
currrentTime
或 currentTime
?!!!
对于一个请求,需要传递四个参数,其中只有三个被传递。参数 timestamp
没有被传递。这可能是什么原因?
$.ajax( {
url : 'http://localhost:8081/Football/FeFeed',
data : {
playernumber : $('#playernumber_goal').val(),
timestamp : $('#match').get(0).currrentTime,
event : 'goal',
team : 'team-name'
},
type : 'GET'
}) .done(function(message){
}).fail(function(message) {
});
Html #匹配:
<video id="match" width="440" controls>
<source src="match.mp4" type="video/mp4">
<source src="match.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
组成的URL是:http://localhost:8081/Football/FeFeed?playernumber=22&event=goal&team=team-name
编辑:我可以传递静态变量,例如 100.232
所以如果你想打发视频时间,试试这个。
var tempVideo= document.getElementById("match");
var tempTime=tempVideo.currentTime;
在你的 ajax post
timestamp : tempTime
currrentTime
或 currentTime
?!!!