假设您使用Embedly API并在application.js文件中进行调用:
$('a.oembed').embedly({maxWidth:300,'method':'replace'}).bind('embedly-oembed', function(e, oembed){
alert(oembed.title);
});
现在您拥有哈希oembed
,并且可以在回调函数中调用ombed.thumbnail_url
或oembed.title
。我想知道如何将回调函数中的其中一个元素保存到数据库中。
jQuery代码看起来像这样:
$.ajax({
type: "POST",
data: { title: 'oembed.title', thumbnail_url: 'oembed.thumbnail_url'}
});
答案 0 :(得分:0)
看起来您只需要使用AJAX将标题和thumbnail_url发布回您的应用程序 - http://en.wikipedia.org/wiki/Ajax_(programming)。
jQuery ajax api非常简单 - http://api.jquery.com/jQuery.ajax/。