摘要:
select video.videoid ,hong.name from video , hong where hong.name="小鸭" and video.hongid=hong.hongid select a.videoid ,b.name from video a , hong b whe 阅读全文
摘要:
vue v-model 在输入框中的双向数据绑定,其实是一个语法糖。 在input中 其实是<input @input="input" :value="value"> input(event){ this.value = event.target.value; } 输入框中修改了,会映射到value 阅读全文