- 博客(21)
- 收藏
- 关注
原创 laravel Mail发送邮件使用方法
创建自定义正文数据视图,在emails写的内容都会显示到邮件正文中。效果图:使用Postman发送请求,163邮箱发送到QQ邮箱。配置config/mail.php。
2024-03-07 10:18:54
1308
原创 C语言队列操作笔记
#include <stdio.h> #include <stdlib.h> #define MAXSIZE 8 // 最大队列长度 #define OVERFLOW -2 // 失败 #define OK 1 // 成.
2022-01-14 15:44:53
312
原创 C语言链栈操作笔记
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define OK 1 #define OVERFLOW -2 #define MAXSIZE 100 typedef int SElemType; typedef int Status; typedef struct StackNode { SElemType data; .
2022-01-12 19:53:08
276
原创 多项式单链表操作笔记
#include <stdio.h> #include <stdlib.h> typedef struct PNode { int coef; // 系数 int expn; // 指数 struct PNode *next; // 后继指针 } PNode, *polynomial; polynomial CreatePolyn(polynomial P, int n); .
2022-01-11 15:18:34
753
原创 C语言线性表-顺序存储结构学习笔记
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> /* 定义全局变量 */ #define MAXSIZE 100 #define OVERFLOW -2 #define OK 1 #define ERROR -1 /* 自定义类型 */ typedef int Position; // 线性表的最后一.
2022-01-09 16:35:21
563
原创 C语言单链表操作笔记2.0
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> // 定义表结构类型 typedef struct Link { int data; struct Link *next; } link; /* 预定义函数 */ link* initLink(); // 初始化 单链表 link* InsetElem(.
2022-01-03 15:24:45
613
原创 Visual Studio Code配置C语言环境笔记
安装MinGW: 官网:https://osdn.net/projects/mingw/ 点击下载: 安装: Install下一步-> Change选择目录 -> Continue->Continue -> 安装 -> 配置环境批量
2021-12-24 19:04:02
1158
4
原创 JavaScript轮播图
JavaScript轮播图 JavaScript window.onload = function () { //自定义获取元素样式方法 function getStyle(obj, name) { if(window.getComputedStyle) { return getComputedStyle(obj, null)[name]; }else { return obj.currentStyle[name]; } } /*动画方法 * 参数:.
2021-08-30 17:19:55
239
原创 JavaScript左右切换练习
JavaScript左右切换练习 HTML <div id="box2"> <img src="../img/2.jpg" alt=""> <button id="prev"> < </button> <button id="next"> > </button> </div> CSS #box2{ position: relative; ..
2021-08-17 12:47:50
394
翻译 laravel表单练习
效果视频 轻松学会Laravel - - Google Chrome 2021-07-23 13-12-35 模型: <?php namespace App\Http\Controllers; use App\Student; use Illuminate\Contracts\Validation\Validator; use Illuminate\Http\Request; class StudentController extends Controller { ..
2021-07-31 15:58:45
229
原创 laravel报错日志之命名空间
错误提示: Namespace declaration statement has to be the very first statement or after any declare call in the script 错误原因: 名称空间声明语句必须是脚本中的第一个语句,或者在任何声明 调用之后 命名空间:前不得带有字符、注释、空格、回车 ...
2021-07-26 18:22:03
426
原创 Android 简单的QQ登录注册
登录页 xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" ...
2021-07-06 10:22:13
1662
1
原创 V-model双向绑定练习
2021年4月24日 body{margin:0;} #app{ width: 713px; margin: 0 auto; background-color: #dddddd; padding: 10px; } header{padding: 20px;} h2{ margin:0; text-align: center; } article>div{margin-bottom: 18px;} art
2021-04-24 19:17:55
249
原创 2021-03-12,安卓项目练习
运行截图 activity_mian文件: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientatio.
2021-03-12 20:35:57
237
原创 2020大二HTML5期末课业
运行效果图: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equi.
2021-03-12 19:01:45
477
翻译 2020-10-19
项目一 运行效果图 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>风雨
2021-03-12 17:45:11
316
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅