摘要:
作用: 1.提高性能 2.指定要返回哪几个字段,为指定的不返回(主要用于select *查询全部) 3.也可指定返回字段的具体类型 详细讲解如下: 最基本的SQL查询就是获得一个标量的列表: session.createSQLQuery("select * from person_inf").lis 阅读全文
摘要:
代码如下: data() { return { timer:null, //定时器名称 }; }, created() { this.setTime(); }, beforeDestroy() { clearInterval(this.timer); // 清除定时器 this.timer = nu 阅读全文