Marldown学习 标题: 二级标题 三级标题 四级标题 字体 Hello,World! Hello,World! Hello.World! Hello,World! 引用 >符号 分割线 图片 超链接 点击跳转到人民网 列表 A B C A B C 表格 名字性别生日 张三 男 1997.1.1 ...
分类:
其他好文 时间:
2021-06-02 18:38:06
阅读次数:
0
话不多说直接上代码 1.前端(个人逻辑做了Excel导出和world导出,world导出会在下一个博客中列出) var xhr = new XMLHttpRequest() var url = window.SITE_CONFIG['baseUrl'] + 'Api/Arrange/ExportPe ...
分类:
其他好文 时间:
2021-06-02 18:30:37
阅读次数:
0
###本博客非原创,来源于https://www.cnblogs.com/k98091518/p/6991614.html ### 在CentOS 6版本,时间设置有date、hwclock命令, 硬件时钟和系统时钟 (1) 硬件时钟 RTC(Real-Time Clock)或CMOS时钟,一般在主 ...
分类:
其他好文 时间:
2021-06-02 18:25:11
阅读次数:
0
wukong-robot插件 wukong-robot 的工作机制: wukong-robot 被唤醒后,用户的语音指令先经过 ASR 引擎进行 ASR 识别成文本; 之后,wukong-robot 会对识别到的文本进行语义理解(NLU),得到解析结果; 轮询每个可用插件,进行技能匹配,交给适合处理 ...
分类:
其他好文 时间:
2021-06-02 17:35:31
阅读次数:
0
package main import "fmt" func main() { s := "Hello World!" fmt.Println(s[0]) //使用下标索引 72 fmt.Println(s[:5])//切片 hello } 字符串 中截取的 索引获取字符串对应位置上存储的字节值,使 ...
分类:
其他好文 时间:
2021-06-02 17:08:39
阅读次数:
0
func main() { s1 := "Hello" + " " + "World" fmt.Println(s1) //Hello World ss := []string{"Hello", "World"} fmt.Println(strings.Join(ss, " ")) //Hello ...
分类:
其他好文 时间:
2021-06-02 17:07:23
阅读次数:
0
1.alert输出 弹出警示框 使用方法 <script>window.alert("弹出警示框");</script> 2.document.write() 直接输出在页面当中 <script>document.write("hello world")</script> 3.innerHTML 写 ...
分类:
编程语言 时间:
2021-06-02 15:44:44
阅读次数:
0
#include <sys/socket.h> #include <sys/wait.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <sys/epoll.h> #include <sys/sendfile.h> #inclu ...
分类:
编程语言 时间:
2021-06-02 14:40:56
阅读次数:
0
创建线程 1.继承Thread类,重写run()方法 public class ThreadCreateDemo1 { public static void main(String[] args) { MyThread thread = new MyThread(); thread.start(); ...
分类:
编程语言 时间:
2021-06-02 12:39:26
阅读次数:
0
Markdown学习 狂神 标题 几级标题用几个# 空格 字体 #### **Hello,world!** *Hello,world!* Hello,world! Hello,world Hello,world! Hello,world! <!--Hello,world!--> Hello,worl ...
分类:
其他好文 时间:
2021-06-02 11:19:35
阅读次数:
0