Designed by 邱宇
摘要: 1、git add 添加多余文件 撤销操作 git reset HEAD 后面什么都不跟的,就是上一次add 里面的内容全部撤销 git reset HEAD XXX 后面跟文件名,就是对某个文件进行撤销 2、git commit 撤销操作 git reset --soft HEAD^ 这样就成功的 阅读全文
posted @ 2023-03-07 09:36 godsaury 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 在vscode上运行cnpm config get registry 的时候,出现这样的信息 这是执行策略的设置问题,默认情况下,执行策略为不允许任何脚本运行,所以会报错 解决方法:管理员打开PowerShell(windows电脑在开始那个按钮右边的搜索栏里面直接搜,然后右键管理员运行),输入se 阅读全文
posted @ 2022-05-16 22:51 godsaury 阅读(792) 评论(0) 推荐(0) 编辑
摘要: 10、Vue总结笔记(超全) 阅读目录 一、前端核心分析 1.1、概述 1.2、前端三要素 1.3、结构层(HTML) 1.4、表现层(CSS) 1.5、行为层(JavaScript) 二、前端发展史 2.1、UI框架 2.2、JavaScript构建工具 2.3、三端同一 2.4、后端技术 2.5 阅读全文
posted @ 2022-02-22 10:24 godsaury 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 文档对象模型(DOM),描述处理网页内容的方法和接口。 浏览器对象模型(BOM),描述与浏览器进行交互的方法和接口。 BOM(浏览器对象模型) 所有浏览器都支持window对象,他表示浏览器窗口。 所有js全局对象,函数,变量均自动成为window对象的成员。 全局变量是window对象的属性。 全 阅读全文
posted @ 2022-01-05 21:31 godsaury 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 数据库的组成: 数据类文件: 管理数据 主数据文件:有且唯一 .mdf 辅助数据文件:可以有,可以没有,可以有多个 .ndf 日志类文件:备份数据 至少一个 .ldf 文件属性 每一个文件有五个属性: name:逻辑名称,字符型数据 filename:路径 size:文件初始大小 size=5mb, 阅读全文
posted @ 2021-11-29 10:28 godsaury 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <math.h> 4 #include <string.h> 5 6 #define NUM 3 7 #define N 10 8 struct person 9 { 10 //声明结构体类型 阅读全文
posted @ 2021-06-18 10:19 godsaury 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #include <math.h> 4 #define PIN1 char* //简单的字符串替换(宏替换) PIN1 替换 char* 5 typedef char* PIN2; //对类型说明符重新命名 c 阅读全文
posted @ 2021-06-18 10:18 godsaury 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #include <math.h> 4 #include <ctype.h> 5 #define N 20 6 int main() 7 { 8 //调试下列程序,使之具有如下功能:输入10个整数,按每行3个数 阅读全文
posted @ 2021-06-18 10:17 godsaury 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 1 #define M 10 2 #include<math.h> 3 #include<stdio.h> 4 #include<string.h> 5 int main1234(){ 6 #if( 0 ) 7 double x,s; 8 printf("input number:\n"); 9 s 阅读全文
posted @ 2021-06-18 10:16 godsaury 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <math.h> 3 #include <string.h> 4 #include <conio.h> 5 6 int main111(void) 7 { 8 #if( 0 ) 9 void avg(void); 10 avg(); 1 阅读全文
posted @ 2021-06-18 10:13 godsaury 阅读(349) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示