Index 页面:模拟调用controller. 实际应用中应该是各个外部系统。 @{ ViewData["Title"] = "Home Page"; } <div class="text-center"> <h1 class="display-4">Welcome</h1> <p>Learn a ...
分类:
Web程序 时间:
2020-04-07 18:32:39
阅读次数:
114
一、实验要求 二、代码实现 1 assume cs:code,ds:data 2 3 data segment 4 db 'welcome to masm!',0 5 data ends 6 7 code segment 8 start: mov dh,8 ;定义行(0-24) 9 mov dl,3 ...
分类:
其他好文 时间:
2020-04-01 14:49:13
阅读次数:
57
Welcome to Innopolis city. Throughout the whole year, Innopolis citizens suffer from everlasting city construction. From the window in your room, you ...
分类:
其他好文 时间:
2020-04-01 13:15:04
阅读次数:
83
RiceQuant米筐量化回测框架介绍 一、RiceQuant平台 + 网址:https://www.ricequant.com/welcome/ 二、策略创建流程 1.1 创建策略 1.2 策略界面 2 完成一个策略所需做的事 + 选择策略的运行基本条件: + 运行区间、初始资金 + 回测频率 + ...
分类:
其他好文 时间:
2020-04-01 12:49:39
阅读次数:
336
前置知识: "MVC模式,不懂的戳我哦" View: login.jsp Welcome.jsp Controller: LoginServlet.java Model: LoginDao.java 封装业务逻辑的 JavaBean "JDBC相关知识的 Click Me" Login.java 封 ...
分类:
编程语言 时间:
2020-03-25 19:22:40
阅读次数:
73
# 一:储备知识#1、 *args, **kwargs# def index(x,y):# print(x,y)## def wrapper(*args,**kwargs):# index(*args,**kwargs) ## # index(y=222,x=111)# wrapper(y=222, ...
分类:
其他好文 时间:
2020-03-23 20:31:44
阅读次数:
69
老游戏新尝试,复刻经典扫雷游戏,简洁版,设计时尽可能减少文字信息,模仿iOS的特点,上手即用。提供最基本的设置和统计信息,毕竟大家是为了玩儿游戏,不是做大数据分析不是吗?试试吧,欢迎讨论分享。 操作: 长按标旗 点按翻开 扫动滚屏 捏合缩放 This is a classic minesweeper ...
分类:
其他好文 时间:
2020-03-22 14:23:16
阅读次数:
152
mysql 安装成功后如何设置密码? 按照安装教程安装成功以后,是默认没有密码的。 命令行输入: mysql -u root -p 即可成功登录,提示 welcome to the mysql monitor!的字样即表示登录成功。 关闭当前命令行,重启cmd.exe 输入mysqladmin -u ...
分类:
数据库 时间:
2020-03-22 10:33:51
阅读次数:
106
# 3.认识和操作一下mysql的基本命令 #### 登录mysql,在终端输入以下命令,进行登录 `mysql -u root -p` ```sql MacBook-Pro:~ yc$ mysql -u root -p Enter password: Welcome to the MySQL mo ...
分类:
数据库 时间:
2020-03-20 12:32:51
阅读次数:
77
在web.xml中 <welcome-file-list> <welcome-file>index</welcome-file> </welcome-file-list> 在springmvc的配置xml中 <bean class="org.springframework.web.servlet.v ...
分类:
编程语言 时间:
2020-03-16 14:26:34
阅读次数:
84