1.1 发送异步请求 <script> <a href="javascript:void(0);" id="testAjax">访问controller</a> <script type="text/javascript" src="/js/jquery-3.3.1.min.js"></script ...
分类:
编程语言 时间:
2020-11-27 11:09:28
阅读次数:
7
xdebug 原理 : php 服务器为 client , phpstom 为调试服务器 获取php对应的xdebug 版本: https://xdebug.org/wizard php.ini 配置: zend_extension=xdebug.so xdebug.remote_enable=1 ...
分类:
Web程序 时间:
2020-11-27 11:05:40
阅读次数:
12
函数 作为增强代码的复用性性和可读性,函数必不可少。 1.C#中的函数 1.1 可变参数params static int IntSum(int x, int y) { return x + y; } //重载,可变参数 static int IntSum(params int[] x) { int ...
分类:
其他好文 时间:
2020-11-26 15:18:47
阅读次数:
10
错误详情: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter org.springframework.web.util.Neste ...
分类:
编程语言 时间:
2020-11-26 15:17:54
阅读次数:
13
Flask是一个基于Python开发的微型web框架 使用Flask实现简单的restful api 安装 pip install flask eg: from flask import Flask app = Flask(__name__) @app.route('/') def hello(): ...
serialize() <form id="dialog_form1" action="" method="post"> </form> var form = $("#dialog_form1"); $.ajax({ url:form.attr('action'), type:form.attr(' ...
分类:
Web程序 时间:
2020-11-26 15:02:14
阅读次数:
11
首先我们要明白微信的流程是怎么样的,才能知道如何去做,话不多说,先上图 按照微信官方给的文档,我们首先要获取到一个临时code,这个临时code是用来放到我们项目的后台的,后台发送秘钥、临时code和appid,后台一起发送到微信官方服务器,换取用户的openid,这是微信的唯一标识。头像和昵称都不 ...
分类:
微信 时间:
2020-11-25 13:02:18
阅读次数:
28
SSM(Spring+SpringMVC+MyBatis)框架集由Spring、MyBatis两个开源框架整合而成(SpringMVC是Spring中的部分内容)。常作为数据源较简单的web项目的框架。Spring Spring就像是整个项目中装配bean的大工厂,在配置文件中可以指定使用特定的参数去调用实体类的构造方法来实例化对象。也可以称之为项目中的粘合剂。 Spring的核心思想是IoC
分类:
编程语言 时间:
2020-11-25 12:53:15
阅读次数:
8
基于RBAC实现权限管理 技术栈:SpringBoot、SpringMVC RBAC RBAC数据库表 主体 编号 账号 密码 001 admin 123456 资源 编号 资源名称 访问路径 001 查询用户列表 /user/list 权限 编号 权限标识 权限名称 资源编号 001 user:l ...
分类:
其他好文 时间:
2020-11-25 12:23:11
阅读次数:
6
[2020-11-20 15:39:11,703] [16792 XNIO-1 task-1(io.undertow.request) : ERROR]io.undertow.servlet.api.LoggingExceptionHandler.handleThrowable(LoggingExc ...
分类:
编程语言 时间:
2020-11-24 12:44:38
阅读次数:
7