上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 53 下一页
摘要: python: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #@Time : 2020/5/3 18:44 4 #@Author: hdq 5 #@File : server.py 6 #将接口以服务器的方式暴露以提供给Java调用缩短调用时 阅读全文
posted @ 2020-12-27 10:19 博二爷 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 代码: 1 package com.util; 2 import com.alibaba.fastjson.JSON; 3 import com.alibaba.fastjson.JSONArray; 4 import com.alibaba.fastjson.JSONObject; 5 6 7 i 阅读全文
posted @ 2020-12-24 16:31 博二爷 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 在配置中加入这个配置即可 1 , limits: [3, 5, 10] //一页选择显示3,5或10条数据 2 , limit: 10 //一页显示10条数据 3 , parseData: function (res) { //将原始数据解析成 table 组件所规定的数据,res为从url中get 阅读全文
posted @ 2020-12-17 16:04 博二爷 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 代码:(借鉴菜鸟教程) HTML: 1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 阅读全文
posted @ 2020-12-16 20:16 博二爷 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 整体思路是: python本身作为服务端和客户端,但是可以用其他语言,调用python命令,只用执行函数,然后获取函数返回值,那么其他语言就能获取python函数执行过的信息。 python/server.py: 1 import socket 2 3 4 HOST = '' # Symbolic 阅读全文
posted @ 2020-12-08 10:29 博二爷 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 发现 from后面是可以跟order by 的所以只用 把 from 表名 换成 from( select b.pubdata from policy b order by b.pubdata ) 就可以了,样例代码: 1 select * from policy where rowid not i 阅读全文
posted @ 2020-12-07 18:45 博二爷 阅读(3880) 评论(0) 推荐(0) 编辑
摘要: 一: 1 select * from a_matrix_navigation_map 2 3 where rowid not in(select rowid from a_matrix_navigation_map where rownum<=0) and rownum<=10 二: 1 SELEC 阅读全文
posted @ 2020-12-07 16:51 博二爷 阅读(1409) 评论(0) 推荐(0) 编辑
摘要: 将label也当作查询语句: 1 match (n) where any(label in labels(n) WHERE not( label in ['文件名'])) return n 节点计数: MATCH (n) RETURN count(*) 阅读全文
posted @ 2020-12-06 21:00 博二爷 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 代码: 1 # -*- coding:utf-8 -*- 2 import re 3 # import Util.NEO4J.neo4j_util as Neo 4 import sys 5 import os 6 import time 7 sentence="" 8 num_zhang=[] 9 阅读全文
posted @ 2020-12-06 08:54 博二爷 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * Created by xc on 2019/11/23 3 * 生成随机密码:6位数字 4 */ 5 public class Test7_4 { 6 7 public static void main(String[] args) { 8 System.out.println( 阅读全文
posted @ 2020-12-05 19:20 博二爷 阅读(462) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 53 下一页