是否可以将 http://www.youtube.com/v/VIDEO_ID 格式的 YouTube 网址保存在数据库中?
我想为我的网站保存一组 YouTube 视频链接。我尝试查看 http://code.google.com/apis/youtube/player_parameters.html 和 ttp://code.google.com/apis/youtube/js_api_reference.html 但没有找到我的问题的答案。
是否可以将 www.youtube.com/v/VIDEO_ID 格式的 YouTube 网址保存在数据库中?
如果没有,请提出一些方法,以便在 YouTube 更新其视频网址时不会破坏视频。
I want to save a set of youtube video links for my website. I tried looking at http://code.google.com/apis/youtube/player_parameters.html and ttp://code.google.com/apis/youtube/js_api_reference.html but did not find an answer to my question.
Is it okay to save the youtube urls of the format www.youtube.com/v/VIDEO_ID in database?
If not, Suggest some ways that would not break the videos at some point when/if YouTube updates its video urls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该只存储视频 ID,并且应该构建 URL 本身。这样您就可以根据需要操纵视频 ID。更不用说数据库的开销更少了。
You should store the video id only, and the URL itself should be constructed. This way you can manipulate the video id however you need. Not to mention that it's less overhead in the database.