上一页 1 2 3 4 5 6 ··· 24 下一页
  2023年3月2日
摘要: docker安装 sudo yum install -y yum-utils \ device-mapper-persistent-data \ lvm2 sudo yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker- 阅读全文
posted @ 2023-03-02 06:29 biind 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 软件: 1.VM VistualBox 2.CentOS-7-x86_64-Minimal-2009.iso 3.配置静态ip及网络 3.配置静态ip及网络 a.打开【桥接网卡】 b.配置静态ip及dns 先查看window10系统的配置(cmd->ipconfig /all),主要获取dns,如果 阅读全文
posted @ 2023-03-02 06:08 biind 阅读(102) 评论(0) 推荐(0) 编辑
  2022年3月10日
摘要: 学习参考地址:https://www.bilibili.com/video/BV1Kr4y1i7ru?p=87 1.表、数据准备 2.索引学习 1.表、数据准备 SHOW CREATE TABLE student; CREATE TABLE `student` ( `id` int NOT NULL 阅读全文
posted @ 2022-03-10 21:35 biind 阅读(42) 评论(0) 推荐(0) 编辑
  2022年3月6日
摘要: npm i mysql --save 创建迁移(migration)adonis make:migration students创建好了之后执行adonis migration:status执行迁移,创建表格adonis migration:run adonis make:controller st 阅读全文
posted @ 2022-03-06 22:21 biind 阅读(39) 评论(0) 推荐(0) 编辑
  2022年3月5日
摘要: 1.vscode安装插件:rest client 2.根目录新增.http文件 3.编写接口+测试接口 参考:https://www.bilibili.com/video/BV1AW411f7Ae?p=8&spm_id_from=pageDriver 阅读全文
posted @ 2022-03-05 09:27 biind 阅读(39) 评论(0) 推荐(0) 编辑
  2022年3月4日
摘要: 创建视图adonis make:view student.indexadonis make:view student.detail Route.get('/student/index', 'StudentController.index')Route.get('/student/detail/:id 阅读全文
posted @ 2022-03-04 21:43 biind 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 参考连接:https://www.bilibili.com/video/BV1AW411f7Ae?p=5&spm_id_from=pageDriver 1.环境搭建 2.基本目录 3.控制器 4.路由 5.模型 6.视图 1.环境搭建 npm i -g @adonisjs/cliadonis new 阅读全文
posted @ 2022-03-04 21:03 biind 阅读(254) 评论(0) 推荐(0) 编辑
  2022年2月20日
摘要: 父组件,传递属性到子组件 在子组件应用: @Input() title: any 父组件,传值 <app-header [title]="'你好,我是来自form页面的title'"></app-header> 父组件,传递方法到子组件 父组件,传方法:show <app-header [title 阅读全文
posted @ 2022-02-20 21:42 biind 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 创建个服务 ng g service services/search 全局引入并配置服务 import {SearchService} from './services/search.service' providers: [SearchService], 在组件中,使用服务 import {Sea 阅读全文
posted @ 2022-02-20 20:58 biind 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1.引入表单 2.简单使用 参考地址:https://www.bilibili.com/video/BV1Wt411V7RC?p=6&spm_id_from=pageDriver 1.引入表单 2.简单使用 import {NgModule} from '@angular/core'; import 阅读全文
posted @ 2022-02-20 20:39 biind 阅读(245) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页