Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

vue 下怎么绑定video的url

我通过ajax从数据库内直接取回完整的url视频地址,然后挂载到data的video属性下。
我应该怎么绑定到video的src里?

          var app = new Vue({
        el:"#app",
        data:{
         booleanLogin:false,
         id:'',name:'',
         bz:'',video:'',pic:''
        },

html:

<video id="video" width="20%" height="20%" controls autoplay>
    <source :src="video" type="video/mp4">
</video>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

你需要 v-if


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...