摘要:
var list = new Array(); var obj = {}; obj.name= "zhangsan"; obj.sex= "女";obj.email="10000@qq.com";...list.push(obj); list的值 在向 web 服务器发送数据时,数据必须是字符串。 阅读全文
摘要:
报错:Avoid mutating a prop directly since the value will be overwritten whenever the parent component........ 原因:所有的 prop 都使得其父子 prop 之间形成了一个单向下行绑定:父级 p 阅读全文