掘友等级
获得徽章 0
springboot中@autowired踩坑
@Autowired
private TreeLayerDao treeLayerDao;
在controller中使用到@Autowired注解的bean的方法中,方法必须为public,如果设置为private,则获取不到bean,为null
收工了
分页查询,redis这么写,大家看看合不合适。PS:本人菜鸡
开发驻场第21天!!!麻木了,第21天想辞职的冲动
打卡,驻场开发第8天,接手别人的项目,面对屎山一样的代码,欲哭无泪
出差出差,客户给领导说项目出bug,着急的要命,老板点头哈腰的说好好好派人过去,挂了电话就骂“*他码的,项目都结了还天天要人过去”。转头就说那个谁谁谁你要不去一下。。。我:🙃🙃🙃好的啥时候到
缓冲区对象向顶点着色器传入多个数据的步骤:
1. 创建缓冲区对象
2. 绑定缓冲区对象
3. 将数据写入缓冲区
4. 将缓冲区对象分配给一个attribute变量
5. 开启attribute变量
“菜鸡小白”学习webgl,期待与其他小白一起学习入门,更期待有大佬能给指导
#新人报道# disabled伪元素
<!DOCTYPE html>
<head>
<style>
.btn{
background-color:blue;
height: 100px;
width: 168px;
}
.btn:disabled{
background-color: aqua;
}
</style>
</head>
<body>
<button id="btnId" class="btn">伪元素</button>
<script>
document.getElementById("btnId")
.addEventListener("click", (e) => {
e.target.setAttribute("disabled", "true")
});
</script>
</body>
</html>
下一页