sbc11

2025年1月27日

day10

摘要: 前端工程化 进行了环境准备下载了Node.js 并进行环境变量的验证,对Node进行相关配置 完成vue脚手架安装进行项目创建 阅读全文

posted @ 2025-01-27 17:15 沈八才11 阅读(9) 评论(0) 推荐(0)

2025年1月26日

第三篇

摘要: 《构建之法——设计模式》 设计模式的定义与意义 设计模式是针对软件开发中常见问题的通用解决方案,它能帮助开发者以一种更标准化、可复用的方式进行系统设计。 例子: 单例模式:单例模式确保一个类只有一个实例,并提供全局访问点。例如,数据库连接池通常使用单例模式来确保整个应用程序中只有一个数据库连接池实例 阅读全文

posted @ 2025-01-26 15:41 沈八才11 阅读(13) 评论(0) 推荐(0)

day9

摘要: Ajax 阅读全文

posted @ 2025-01-26 15:41 沈八才11 阅读(7) 评论(0) 推荐(0)

2025年1月25日

day8

摘要: Vue学习 点击查看代码 <html> <head> <title>Vue-入门</title> <script src="index.jsp"></script> </head> <body> <div id="app"> <a v-bind:href="url">连接1</a> <a :href 阅读全文

posted @ 2025-01-25 15:11 沈八才11 阅读(9) 评论(0) 推荐(0)

2025年1月24日

day7

摘要: 事件 事件绑定 点击查看代码 <html> <head> <title>Title</title> </head> <body> <input type="button" id="btn1" value="事件绑定1" onclick="on()"> <input type="button" id= 阅读全文

posted @ 2025-01-24 14:57 沈八才11 阅读(7) 评论(0) 推荐(0)

2025年1月23日

day6

摘要: js 对象 Array 特点:长度可变,类型可变; 点击查看代码 var arr = [1,2,3,4]; for(let i = 0;i<arr.length;i++){ console.log(arr[i]); } //forEach:遍历数组中有值的元素 arr.forEach(functio 阅读全文

posted @ 2025-01-23 16:23 沈八才11 阅读(15) 评论(0) 推荐(0)

第二篇

摘要: 《构建之法——质量保证》 质量保证的重要性 在软件开发过程中,质量保证不仅仅是确保功能的正确性,还包括性能、安全性、可维护性等多个方面。良好的质量保证能确保系统的稳定性和用户满意度。 例子: 银行系统:假设一个银行的核心交易系统,如果没有良好的质量保证,可能导致账户信息泄露或交易失败。因此,开发团队 阅读全文

posted @ 2025-01-23 15:01 沈八才11 阅读(22) 评论(0) 推荐(0)

2025年1月21日

day5

摘要: 学习了js的相关知识 点击查看代码 <html> <head> <title>$Title$</title> <script> window.alert("hadioho"); document.write("isafhlsa"); console.log("diasdo"); </script> 阅读全文

posted @ 2025-01-21 15:56 沈八才11 阅读(10) 评论(0) 推荐(0)

2025年1月20日

day4

摘要: 表格表单标签 1.表格标签 点击查看代码 <table border="1px" width="600px" cellspacing="0"> <tr> <th>序号</th> <th>学号</th> <th>姓名</th> </tr> <tr> <td>1</td> <td>23</td> <td 阅读全文

posted @ 2025-01-20 15:54 沈八才11 阅读(13) 评论(0) 推荐(0)

2025年1月19日

day3

摘要: 正文排版 点击查看代码 <html> <head> <title>新闻</title> <style> h1{ color: brown; } .cls{ color: aquamarine; } a{ color: blue; text-decoration: none; } p{ text-in 阅读全文

posted @ 2025-01-19 15:52 沈八才11 阅读(7) 评论(0) 推荐(0)

导航