本文内容 1. web概念概述 2. HTML web概念概述 * JavaWeb: * 使用Java语言开发基于互联网的项目 * 软件架构: 1. C/S: Client/Server 客户端/服务器端 * 在用户本地有一个客户端程序,在远程有一个服务器端程序 * 如:QQ,迅雷... * 优点: ...
分类:
Web程序 时间:
2020-06-17 14:19:13
阅读次数:
71
###Form ####Methods-resetFields <template> <div class="home"> <el-form :model="ruleForm" ref="ruleForm" label-width="100px" class="demo-ruleForm"> <el ...
分类:
其他好文 时间:
2020-06-17 10:31:19
阅读次数:
48
引言 根据上一节学到知识点,我们明白docker镜像的结构,所以本节中,我们来创建第一个docker镜像 使用docker run命令创建第一个docker镜像 1.执行docker run ubuntu echo "hello world docker" 命令,若执行的命令是”docker run ...
分类:
其他好文 时间:
2020-06-17 01:44:00
阅读次数:
63
helloworld 新建文件夹,存放代码 新建Java文件,文件后缀为a.java 编写代码 public class hello{ public static void main(String[] args){ System.out.println("Hello World"); }} 编译 j ...
分类:
编程语言 时间:
2020-06-17 01:10:53
阅读次数:
60
// Event0616.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <WINDOWS.H> HANDLE hEvent; HANDLE hMutex; DWOR ...
1.执行代码 php -r "echo 'hello world';" (注意加分号,与PHP文件一样) 2.执行文件 php -f 文件所在路径(/var/www/xxx.php) 文章来自:https://www.cnblogs.com/indifferent/p/11276099.html ...
分类:
Web程序 时间:
2020-06-16 18:24:28
阅读次数:
50
1、遍历ArrayList import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class ArrayListDemo1 { public static void main(Stri ...
分类:
编程语言 时间:
2020-06-16 15:33:39
阅读次数:
50
String 、StringBuilder 、StringBuffer 的区别? 什么情况下用“+”运算符进行字符串连接比调用 StringBuffer/StringBuilder对象的 append 方法连接字符串性能更好?. String类是不可变的(fianl修饰的),对象一旦被创建,就不能被 ...
分类:
移动开发 时间:
2020-06-16 14:51:02
阅读次数:
79
Docker的常用命令帮助命令docker version docker info docker --help 镜像命令docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE hello-world latest 9f5834b25059 ...
分类:
其他好文 时间:
2020-06-16 13:19:07
阅读次数:
66
hash vue-router 默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。 URL:http://www.abc.com/#/hello, hash 的值为#/hello 。 hash 虽然出现URL中,但不会被包含在 ...
分类:
其他好文 时间:
2020-06-15 17:48:58
阅读次数:
52