我正在创建一个音乐博客网站,我想通过通过表单提交嵌入的iframe来嵌入视频。
我尝试将视频提交到UTF-8 ECMAScript中的表单中,但仍然无法正常工作
var artistSchema = new mongoose.Schema({
name: String,
title: String,
image: String,
content: String,
description: String
});
app.get("/songs/:id", function(req, res){
// Find the artist with provided ID
Artist.findById(req.params.id, function(err, foundArtist){
if(err){
console.log(err);
} else {
// Render show template with that song
res.render("show", {artist: foundArtist});
}
});
});
我可以显示所有内容,除了应该是嵌入视频代码的内容