How to get the file name in the blob return stream when the front-end vue downloads a file
I wrote an article a long time ago that the front-end vue uses blob objects to download files. Some people believe me privately. If the back-end return flow fails, how can I get the json object given? How can the stream obtained by the front end obtain the original file name? In fact, after that article, I have optimized these two problems, so ...
Posted by WLC135 on Mon, 07 Mar 2022 10:35:55 +0100
[js30 Wes BOS] Gallery effects realized by Flex container
title: [native javascript project] Flex Panel 05date: 2021-11-17 20:10:40tags: native javascript projectcategories: 30 native javascript projectsintroductionThis paper introduces a dynamic screening web page. The knowledge points mainly involve flex container and element click events.Effect website: https://janice143.github.io/f...text1, html p ...
Posted by jimmygee on Mon, 07 Mar 2022 10:03:31 +0100
Fundamentals of Java programming IV: Object Oriented Programming
Chapter IV object oriented programming
1 object oriented and process oriented
Both of them are a kind of thought, and object-oriented is relative to process oriented. Process oriented emphasizes the functional behavior, taking the function as the smallest object and considering how to do it. Object oriented, encapsulating functions into obje ...
Posted by Dillenger on Mon, 07 Mar 2022 10:01:49 +0100
Process protection under r0
preface
The full name of SSDT is System Services Descriptor Table. This table is a link between the Win32 API of Ring3 and the kernel API of Ring0. SSDT not only contains a huge address index table, but also contains some other useful information, such as the base address of the address index, the number of service functions and so on. By modi ...
Posted by ThermalSloth on Mon, 07 Mar 2022 09:45:51 +0100
Requests cache improves crawler efficiency
When we are reptiles, we often these situations:
The website is complex and will encounter many repeated requests. Sometimes the crawler is interrupted unexpectedly, but we don't save the crawling state. If we run again, we need to crawl again.
There are such problems.
So how to solve these repeated crawling problems? You probably think of ...
Posted by gavinandresen on Mon, 07 Mar 2022 09:42:37 +0100
Feature selection algorithm in Spark ML
Feature Selection refers to the process of selecting those "excellent" features from the feature vector to form a new and more "streamlined" feature vector. It is very commonly used in high-dimensional data analysis. It can eliminate the characteristics of "redundancy" and "irrelevant" and improve the per ...
Posted by beselabios on Mon, 07 Mar 2022 09:40:15 +0100
TypeScript learning notes - Omit
After version 3.5, TypeScript added an omit < T, k > type. Omit < T, k > types can exclude some attributes from inherited object attributes.
type User = {
id: string;
name: string;
email: string;
};
type UserWithoutEmail = Omit<User, "email">;
// Equivalent to
type UserWithoutEmail = {
id: string;
name: string;
}; ...
Posted by echo10 on Mon, 07 Mar 2022 09:36:02 +0100
Spring MVC learning topics
SpringMVC
ssm:mybatis+spring+springmvc
mvc three-tier architecture: pattern (Dao, Service), view (Jsp..) Controller (Servlet)
1, Introduction
1. What is spring MVC
Spring MVC is a part of Spring FrameWork. It is a lightweight Web framework based on java to implement MVC
Spring MVC features:
Lightweight and easy to learn
Efficient, request re ...
Posted by Bman900 on Mon, 07 Mar 2022 09:31:56 +0100
[Lua from bronze to the king] Chapter 5: Lua operator
Catalogue of series articles
preface
🌲 1, Lua operator
An operator is a special symbol that tells the interpreter to perform a specific mathematical or logical operation. Lua provides the following operator types:Arithmetic operatorRelational operatorLogical operatorOther Operators
🌲 1. Arithmetic operator
1. Grammar
The ...
Posted by Aliz on Mon, 07 Mar 2022 09:22:20 +0100
Add a to the file gitignore
1.WHY?. gitignore file just state in this file that you don't want to add those files to git, so when you use git add These files are automatically ignored2. Principle of ignoring documentsIgnore the files automatically generated by the operating system, such as thumbnails;Ignore the intermediate files and executable files generated by compilat ...
Posted by worldofcarp on Mon, 07 Mar 2022 09:18:40 +0100