我正在使用Dailymotion API从我的网站上传vidoe。
我有这个问题:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" value="1">
<span class="add">+</span>
<span class="substract">-</span>
此查询返回一个带有此上传标识符的JSON(我可以在我的控制台中看到这个json),但是如何将这个json转换为变量?
答案 0 :(得分:0)
这是一个javascript问题,而不是dailymotion-api问题:)
dailymotion SDK返回json。请尝试以下方法检索ID:
DM.api('/videos',
'post',
{
url: JSON.parse(xhr.response).url,
title: $('#title').val(),
tags: $('#tags').val(),
channel: $('#channel option:selected').val(),
published: 'true',
private: true
},
function(response) {
console.log(response.id);
}
);