Blogger Information
P粉036614676
Blog
47
fans
0
comment
0
visits
21605
integral:0
P beans:94
  • List of blog posts
  • composer的常规用法

    上机练习composer常用指令,深刻理解compser应用场景与引用方法 1.不用composer进行包管理 在文件中需要提供路径名,和命名空间

    2022-08-24 13:52 Read 496 comment 0
  • CSS样式与选择器

    结构 表格: CSS样式 caption#x{ ...

    2022-07-07 15:37 Read 493 comment 0
  • Markdown语法与Emmet语法

    Markdown语法1.标题# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题 演示效果如下: 2.列表2.1无序列表- list1- list2- list3 - ltem1 - it...

    2022-07-02 12:42 Read 487 comment 0
  • 标签的详解

    1.标签分类1.1单标签1.1.1img标签 最重要的两个属性,alt和src, 1.1.1img标签 1.2双标签1.2.1h标签这是和标签这是和标签.... 1.2.2p标签 段落标签 1.2.3video标签

    2022-10-15 08:43 Read 473 comment 0
  • Element和后台搭建

    1、element 安装1.npm 安装 npm i element-ui -S 2. CDN

    2022-09-18 15:31 Read 443 comment 0
  • markdown语法简介

    Markdown 语法 markdown 最终会转为html 一级标题 二级标题三级标题四级标题五级标题六级标题1. 标题# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题 2. 分隔符---至少三...

    2022-10-14 22:02 Read 429 comment 0
  • Vue组件和路由

    1.组件 组件就是一大口代码的集合 {{teacher}}

    2022-09-14 10:41 Read 418 comment 0
  • 连表查询和model

    1.连表查询 使用join或者查询一次,再查询一次 $res = Db::table('course c')->join('sc s','s.Cno' == 'c.Cno')->select()->toArray(); print...

    2022-08-31 21:41 Read 416 comment 0
  • 简单路由配置

    1、二级路由配置1. 导入文件import Info from '../views/Info.vue';import Config from '../views/Config.vue';2.配置路径 { path:'/Course', n...

    2022-09-16 11:27 Read 413 comment 0
  • 引入字体图标和PC优先

    引入字体图标1.存在的问题,打开index.html发现有些下载的图标用不了2.引入样式 3.代码style.css代码 @import './font_icon/iconfont.css';.picture{ color: brown; ...

    2022-07-10 08:22 Read 406 comment 0
  • TP数据库操作和请求

    1.数据库操作1.1 in , not in $res = Db::table('course')->where('Cno','not in','3,4,5,6')->select()->toArray(); print_r($re...

    2022-08-31 09:41 Read 403 comment 0
  • CSS定位

    1.块级元素1.1常用的块级元素div p table ul lo li h1-h6 dl dt 特点: 块级元素独占一行默认的宽度占满父级元素,行内元素不会换行可以设置宽高1.2行级元素a img span b strong input sele...

    2022-07-12 11:38 Read 398 comment 0
  • PHP数组函数

    1.函数大纲 2.重点函数讲解

    2022-08-14 21:49 Read 378 comment 0
  • vue的基本用法

    1.Vue安装//打开服务器yarn servenpm run servectrl + c :停止服务器目录名 作用node_modules npm 加载的项目依赖模块public 公共资源目录src 开发目录src/main...

    2022-09-11 22:25 Read 375 comment 0
  • 选择器和盒模型

    1.选择器1.1结构选择器伪:假,防类:权重基本依然是class级别,”类“级、classnth-of-type(an+b)1. a:系数,[0,1,2....]2. n:参数,[0,1,2....]3. b:偏移量,从0开始注意:计算出来的索引必须...

    2022-07-08 15:27 Read 370 comment 0