【odoo14】经典好书学习没有烂尾,主体已完成,可移步了解。https://www.cnblogs.com/xushuotec/p/14428210.html 背景 近期,有朋友打算上odoo系统。目前已有一套ERP系统了,由于是标准化产品,所以用起来各种不爽,终于在使用了两年后打算迁移。PS,我 ...
分类:
其他好文 时间:
2021-05-24 07:23:52
阅读次数:
0
最近做一个爬虫项目,需要curl请求第三方系统,其中一个请求放到postman的时候秒回,代码curl请超时,打印错误信息:empty reply from server 翻阅网上资料无果,只能用排除法,去掉请求的一些配置看是哪里影响了,最后发现去掉post data 后请求秒回,虽然返回的是请求失 ...
分类:
Web程序 时间:
2021-05-24 07:00:36
阅读次数:
0
参考资料: 1、Spring系列之bean的作用域、@Scope注解与proxyMode属性,https://blog.csdn.net/qq_32077121/article/details/107805007(讲解了Scope中代理模式的原理,重点理解) 2、spring aop 源码分析(三) ...
分类:
其他好文 时间:
2021-05-24 06:11:26
阅读次数:
0
文件上传 1.前端加入表单 <form method="POST" , action = "/Upload", enctype="multipart/form-data"> <input type="file", name = "file"/><br> <input type="submit", v ...
分类:
Web程序 时间:
2021-05-24 05:55:31
阅读次数:
0
Ajax请求处理,JSON数据返回 1.前端页面添加ajax请求 这里是以POST请求发送AJAX请求 <script> $(function(){ $("#submitBtn").click(function(){ $.ajax({ "url":"/Login", "type":"POST", " ...
分类:
Web程序 时间:
2021-05-24 05:43:17
阅读次数:
0
参考 https://python.ctolib.com/328921371-ruler.html 法一 cs-ruler 插件 npm install cs-ruler <template> <div> <cs-ruler @post-NumValue="rulerNum" :NowNum='10 ...
分类:
其他好文 时间:
2021-05-24 05:10:16
阅读次数:
0
(1)我们测试的接口属于哪一类? 通常都是B/S架构,由客户端调用,或模拟客户端调用服务器提供的请求接口,由服务器完成处理并返回一个应答的过程。 例如 webservice接口 http接口 jms接口 hessian接口 (2)HTTP接口传递数据最常用的方式? get和post最常用。 get是 ...
分类:
其他好文 时间:
2021-05-24 04:58:15
阅读次数:
0
static void Main(string[] args) { //Console.WriteLine("Hello World!"); //ShowInt(10); //ShowString("test"); //ShowDateTime(DateTime.Now); //ShowObject ...
分类:
其他好文 时间:
2021-05-24 04:48:03
阅读次数:
0
1.打开网页,得到信息如下 2.打开hackbar,在body里传入post参数。 3.得到flag如下 4.主要考察post传参,和简单的php代码审计。 ...
分类:
Web程序 时间:
2021-05-24 04:45:46
阅读次数:
0
get 头部header为 'content-type': 'application/json' post 头部 'content-type':"application/x-www-form-urlencoded" ...
分类:
其他好文 时间:
2021-05-24 04:36:32
阅读次数:
0