1. 定义模板文件 一般在项目根目录下创建一个文件夹(注意:不是包)存放模板文件 2. 主工程模块中配置模板的路径 在主工程目录下settings.py文件中,配置模板文件的路径 TEMPLATES = [ { 'BACKEND': 'django.template.backends.django. ...
分类:
其他好文 时间:
2021-01-14 11:27:45
阅读次数:
0
MP 可以实现 SQL 的分析打印功能,输出sql执行时间以及真实执行的SQL语句 step1:引入p6spy 依赖引入 <dependency> <groupId>p6spy</groupId> <artifactId>p6spy</artifactId> <version>3.8.2</vers ...
分类:
数据库 时间:
2021-01-14 11:21:39
阅读次数:
0
swiper:https://www.swiper.com.cn/usage/index.html 安装swiper cnpm i -S swiper 在功能组件中定义Swiper组件并设置好插槽 <template> <div class="swiper-container"> <div clas ...
分类:
其他好文 时间:
2021-01-13 11:31:56
阅读次数:
0
Laravel Package for Matching Engine 快速开始 github地址 安装: composer require sting_bo/mengine 复制配置文件: php artisan vendor:publish 依赖 predis 号外 已经出Golang微服务撮合 ...
分类:
Web程序 时间:
2021-01-12 11:24:44
阅读次数:
0
在.h文件中必须同时有模板的声明和明确的定义,不能在.cpp中却定义。 1 #ifndef STACKTP_H_ 2 #define STACKTP_H_ 3 template <class Type, int MAX> 4 class Stack 5 { 6 private: 7 Type ite ...
分类:
编程语言 时间:
2021-01-12 10:36:55
阅读次数:
0
<template> <view class="login"> <view class="content-wrapper"> <view class="title"> <h1>欢迎使用考试系统</h1> </view> <view class="login-form"> <view class="l ...
分类:
移动开发 时间:
2021-01-11 11:21:48
阅读次数:
0
el-tree是elementui提供的一个树组件 里面的坑其实还是很多的 比如:1 设置节点高亮,必须加一个延时 2.添加节点,必须使用$set 3.数据的格式化 4.父级id的设置 ........... <template> <div class="departmentManage" styl ...
分类:
其他好文 时间:
2021-01-11 11:12:04
阅读次数:
0
ngModel ngModel不能用来把表单控件注册到父formGroup指令中。不然会报错 如果你想避免注册这个表单控件,请在ngModelOptions中指出它是独立的: <input [(ngModel)]="person.firstName" [ngModelOptions]="{stand ...
分类:
其他好文 时间:
2021-01-11 10:51:05
阅读次数:
0
JDBC事务控制 1.什么是事务:一个包含多个步骤或者业务操作,如果业务或者多个业务被事务管理,则这么多个步骤要么同时成功,要么同时失败,这些步骤是一个整体不可分割. 2.操作: 开启事务:mysql >start transaction 提交事务:commit 回滚事务:rollback 3.使用 ...
分类:
数据库 时间:
2021-01-11 10:45:18
阅读次数:
0
Ansible常用模块 ansible常用模块使用详解 ansible常用模块有: ping yum template copy user group service raw command shell script ansible常用模块raw、command、shell的区别: shell模块调 ...
分类:
其他好文 时间:
2021-01-08 11:31:37
阅读次数:
0