码迷,mamicode.com
首页 >  
搜索关键字:desc    ( 6736个结果
剑指office--------二叉树的镜像
题目描述 操作给定的二叉树,将其变换为源二叉树的镜像。 输入描述: 二叉树的镜像定义:源二叉树 8 / \ 6 10 / \ / \ 5 7 9 11 镜像二叉树 8 / \ 10 6 / \ / \ 11 9 7 5 1 /* 2 struct TreeNode { 3 int val; 4 st ...
分类:其他好文   时间:2020-07-22 20:33:30    阅读次数:78
Django处理下拉数据
问题来源: 针对下拉菜单而言,如果全部有前端固定输入,一旦系统需要修改前端字段名称,那么我们就需要去找到对应的下拉框,修改名称,修改后还要重新提交代码;略微麻烦 解决办法,用Django的models处理,把数据都写到数据库中,后端把数据返回给前端,前端只需要读取数据,写到对应的下拉菜单中即可 具体 ...
分类:其他好文   时间:2020-07-22 20:31:35    阅读次数:87
常用核心数据库查询sql
一、查询账户信息 -- 查询数据量 /*{"xdb_comment":"1","table":"mb_tran_hist","pk_value":"0"}*/ select base_acct_no,count(1) num from mb_tran_hist group by base_acct_ ...
分类:数据库   时间:2020-07-22 11:25:20    阅读次数:85
Unity 多平台原生SDK接入速览(一):微信开放平台
该系列将记录我对于五个平台(微信、QQ、Facebook、Twitter、微博)的原生SDK的调研,重点关注登录和分享。P.S. 当前并没有 iOS 设备,因此文章都是以 Android 平台的接入为主,使用的 IDE 为 Android Studio。 ZeroyiQ:Unity 多平台原生SDK ...
分类:微信   时间:2020-07-21 13:47:18    阅读次数:108
How to prevent user to login second time when its already logged in.
How to prevent user to login second time when its already logged in. If you are using Forms Authentication, it should already be storing your Authenti ...
分类:其他好文   时间:2020-07-21 09:34:28    阅读次数:78
ORCAL查看表空间情况
SELECT a.tablespace_name 表空间名称, total 总计, total - free 已使用, free 空闲, round((total - free) / total * 100, 2) 使用占比FROM ( SELECT tablespace_name , round( ...
分类:其他好文   时间:2020-07-20 22:36:26    阅读次数:76
Understand Spring Security Architecture and implement Spring Boot Security
In this tutorial we will be looking at how Spring Security works and its architecture. We will be creating a Spring Boot Project to expose two REST AP ...
分类:编程语言   时间:2020-07-20 20:32:59    阅读次数:72
axios封装(使用了element-ui的消息提示)
/** Axios请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ import axios from 'axios'; import baseUrl from "./config"; import {Message} from ' ...
分类:移动开发   时间:2020-07-20 13:13:37    阅读次数:127
jquery-ajax封装
/** 请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ /** * 发送请求,处理请求失败 * * request(url, method, data, callback) * request(url, method, callb ...
分类:Web程序   时间:2020-07-20 13:11:43    阅读次数:82
PyCharm注释头模板
#!/usr/bin/env python3 # _*_ coding:utf-8 _*_ ''' @File :${NAME}.py @Author:mikigo @Date :${DATE} ${TIME} @Desc : ''' ...
分类:其他好文   时间:2020-07-20 13:06:55    阅读次数:91
6736条   上一页 1 ... 19 20 21 22 23 ... 674 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!