摘要:
今天使用ajax向后端取数据的时候,按照正常的写法,死活return不了值,所以看了下ajax的帮助手册,发现了这个参数async:false,这个参数是说async表示不是异步执行了,为同步执行了。 请看代码: html 代码: function get_username() { // ajax函 阅读全文
摘要:
texstudio编辑器中: 加一句\usepackage[UTF8]{ctex} 然后选项(option)->设置Texstudio(configure texstudio)->将“构建(build)”的默认编辑器改为xeLatex 阅读全文
摘要:
解决方法 添加一段话 <%@ page isELIgnored="false"%> 阅读全文
摘要:
linux实现udp 前言:udp通信需指定自己的接收端口和IP地址,并且有至少两个线程,即发送和接收。 话不多说,看代码: #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <sys/types.h> #incl 阅读全文
摘要:
https://blog.csdn.net/Wing_93/article/details/78916547 阅读全文
摘要:
Windows系统中 Xmanager 6 企业版下载安装激活教程 详见此处 阅读全文
摘要:
Ubuntu命令ifconfig出错问题 今天安装完ubuntu后,使用ifconfig查看ip地址,报错: 于是根据系统的提示输入sudo apt install net-tools,却报错: 解决办法:输入sudo apt-get update 更新完成后,再执行sudo apt install 阅读全文
摘要:
centos连不上网的解决办法: 见此处 阅读全文
摘要:
jupyter notebook 1. 安装 安装前最好将pip升级到最新版 :pip install --upgrade pip pip命令安装:pip install jupyter 安装成功提示有:jupyter、jupyter-client、jupyter-console、jupyter-c 阅读全文