会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
0C°
导航
博客园
首页
新随笔
联系
订阅
管理
公告
上一页
1
2
3
4
5
6
7
···
18
下一页
2021年4月5日
github的personal access token
摘要: github -> account -> settings -> Developer settings -> Personal access tokens"处,点击Generate new token
阅读全文
posted @ 2021-04-05 21:14 0C°
阅读(475)
评论(0)
推荐(0)
github如何切换到指定的分支
摘要: git checkout 分支名 git checkout -b 分支名 新建分支并且切换
阅读全文
posted @ 2021-04-05 18:09 0C°
阅读(232)
评论(0)
推荐(0)
2021年4月3日
The selector should be prefixed by "app" (https://angular.io/guide/styleguide#style-02-07)
摘要: selector提示红色,意思是应该有前缀app.修改为app-login-page即可
阅读全文
posted @ 2021-04-03 13:31 0C°
阅读(184)
评论(0)
推荐(0)
comment must start with a space (comment-format)tslint(1)
摘要: 1、除了按照规范在//之后加一个空格即可。 2、tslint.json中配置,放宽检测条件。 根据错误提示最后的(comment-format),知道这个错误在tslint.json是由comment-format属性控制的。so,打开tslint.json: "comment-format": [
阅读全文
posted @ 2021-04-03 13:18 0C°
阅读(268)
评论(0)
推荐(0)
Not using the local TSLint version found for XXX
摘要: ctrl+shift+p 输入tslint 选择 选项 Manage workspace library execution 回车即可
阅读全文
posted @ 2021-04-03 13:16 0C°
阅读(410)
评论(1)
推荐(1)
对修饰器的实验支持功能在将来的版本中可能更改。在 "tsconfig" 或 "jsconfig" 中设置 "experimentalDecorators" 选项以删除此警告。ts(1219)
摘要: 方法一:设置VSCode选项 管理==>设置==>搜索experimentalDecorators==>打上勾勾 方法二:增加jsconfig文件 在根目录下新建jsconfig.json文件 在根目录下新建jsconfig.json文件 { "experimentalDecorators": tr
阅读全文
posted @ 2021-04-03 13:03 0C°
阅读(3991)
评论(0)
推荐(1)
如何在项目开发中使用github
摘要: 1、创建新的仓库 2、利用Gitbashhere打开本地GitHub并配置 注意:开发中(dev)和上线的分支需要区别开 git checkout -b 分支名 是创建分支并且切换到这个分支 加入别人的团队时: 1、把大神的代码clone到本地,或者clone自己github上的代码使用命令 新建文
阅读全文
posted @ 2021-04-03 11:08 0C°
阅读(100)
评论(0)
推荐(0)
ng6中使用socket.io报global is not defined错误
摘要: 在polyfills.ts中配置 (window as any ).global = window
阅读全文
posted @ 2021-04-03 10:04 0C°
阅读(212)
评论(0)
推荐(0)
2021年3月27日
node学习之第一个服务器
摘要: 在node中我们应该如何创建服务器呢? 可以使用node构建服务器 // node中提供了http模块,这是专门创建编写服务器的 // 1,加载http核心模块 var http = require('http'); // import { createServer } from 'http'; /
阅读全文
posted @ 2021-03-27 16:56 0C°
阅读(61)
评论(0)
推荐(0)
node学习报错之883
摘要: 第一个报错 当出现883这个错误时,是因为我们没有在解析文件的文件夹(这个错误有点让人心酸)
阅读全文
posted @ 2021-03-27 16:51 0C°
阅读(78)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
18
下一页