logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

前端实现大文件上传(文件分片、文件hash、并发上传、断点续传、进度监控和错误处理,含nodejs)

大文件分片上传是前端一种常见的技术,用于提高大文件上传的效率和可靠性。主要原理和步骤如下。

文章图片
#前端
centos7 nginx(403)之SElinux

你是不是和我遇到的情况一样?把setenforce设置为0时,页面可以访问,设置为1时不可以访问并出现403今天就来说一下如何查找并修改,即使selinux设为1时,也能通过。准备win10 ,虚拟机,centos7,nginx1.180版本,一些查看SElinux命令,有一定selinux基础基本思路①:配置好nginx.conf②:查看当前SElinux有关信息③:查看主进程type和要访问文

jquery 点击li循环高亮显示

效果图:实现上部分效果其实很简单下面是代码js代码function clickWriter(obj) {$(obj).parent().find("a").each(function() {$(this).removeClass("active");});$(obj).addClass("active");}//each()循环遍历h...

#jquery
thinkphp5中ajax——post请求

html代码<body><div class="light-modal" id="modal-id-1" role="dialog" aria-labelledby="light-modal-label" aria-hidden="true"><div class="light-modal-contentanimated zoomI...

#ajax
promise 封装jquery ajax并调用

封装代码function ajax(param){return new Promise(function(resolve, reject){//返回Promise对象$.ajax({url: param.url,type:param.type||"GET",async:param.async...

数据结构(C语言版)——有序表查找(折半查找)(代码版)

一、代码#include <stdio.h>#include <stdlib.h>#define ERROR 0#define OK 1#define MAXSIZE 20typedef int Status;Status binarySearch(int arr[],int arrLenght,int wantSearchElement);int main(int arg

数据结构(C语言版)——希尔排序(代码版)

一、代码#include <stdio.h>#include <stdlib.h>#define OK 1#define ERROR 0#define MAXSIZE 20typedef int Status;void shellSort(int data[],int dataArrLenght);void shellSort(int data[],int dataArrL

数据结构(C语言版)——顺序线性表

本片博客,以代码为主一、代码再写代码之前先来了解一下,线性结构的特点和定义的几个顺序链表基本操作线性结构的特点顺序链表基本操作1:初始化顺序链表2:插入顺序链表3:判断当前顺序链表是否为空4:清空顺序链表5:打印顺序链表中的元素6:当前顺序链表元素个数代码#include <stdio.h>#include <stdlib.h>#define MAXSIZE 20 //定义

数据结构(C语言版)——树的孩子表示法(代码版)

一、代码#include <stdio.h>#include <stdlib.h>#define OK 1#define ERROR 0#define MAXSIZE 20typedef int Status;typedef struct CTnode{//孩子结构int child;struct CTnode* next;}*ChildPointer;typedef st

数据结构(C语言版)——顺序栈(代码版)

一、代码#include <stdio.h>#include <stdlib.h>#define MAXSIZE 10#define OK 1#define ERROR 0;typedef int Status;typedef struct stackStruct{int data[MAXSIZE];int top;} Stack;typedef struct stackS

    共 31 条
  • 1
  • 2
  • 3
  • 4
  • 请选择