码迷,mamicode.com
首页 >  
搜索关键字:cannot call method g    ( 28012个结果
js中bind(),call()使用详解
1.bind() 函数.bind(this指向,函数参数...)1 函数调用bind会返回一个新的函数2 新函数中的this指向bind的第一个参数例: function show() { console.log('show'); console.log(this); } show();// thi ...
分类:Web程序   时间:2021-05-24 06:04:46    阅读次数:0
[beego学习] 表单文件上传
文件上传 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
安卓调用WebView中的js字符串生成工具
在安卓中,调用WebView中的js函数,在平台支持的情况下,可选使用 evaluateJavascript 或 loadUrl 本文中使用 loadUrl 方式 重写 SerializeJson 后使用即可 1 public abstract class WebViewJsHelper 2 { 3 ...
分类:移动开发   时间:2021-05-24 05:52:26    阅读次数:0
ERROR总结
1.连接问题 Cannot get a connection, pool error Timeout waiting for idle object 解决: 排查思路: 1.检查是否应用压力过大,无法获取空闲连接 查看cpu、内存 查看tomcat的连接数(netstat -natp | grep ...
分类:其他好文   时间:2021-05-24 05:29:42    阅读次数:0
super关键字和this关键字三种用法
Super关键字的三种用法 在子类的成员方法中,访问父类的成员变量。 public class Fu { int num = 10; } public class Zi extends Fu { int num = 20; public void methodZi() { System.out.pr ...
分类:其他好文   时间:2021-05-24 05:28:29    阅读次数:0
微服务介绍
微服务(Microservices)——Martin Flower 原文是 Martin Flower 于 2014 年 3 月 25 日写的《Microservices》。 迁移到:http://www.bdata-cap.com/newsinfo/1713874.html 本文内容 微服务 微服 ...
分类:其他好文   时间:2021-05-24 04:55:03    阅读次数:0
智能合约审计-重入漏洞
简介 当调用外部的合约时,外部合约会接管控制流程,从而可能给自己的数据带来意想不到的修改。2016年6月,以太坊最大众筹项目The DAO被攻击,黑客获得超过350万个以太币。正是由于此陷阱。 原因 调用外部合约,fallback回调函数被多次执行。 复现 很多都是老语法的address.call( ...
分类:其他好文   时间:2021-05-24 04:46:13    阅读次数:0
go-micro client 客户端
go-micro 支持很多通信协议:http、tcp、grpc等,支持的编码方式也很多有json、protobuf、bytes、jsonrpc等。也可以根据自己的需要实现通信协议和编码方式。go-micro 默认的通信协议是http,默认的编码方式是protobuf。 主要代码定义如下: // Cl ...
分类:其他好文   时间:2021-05-24 04:28:27    阅读次数:0
解决mac系统docker启动mysql端口被占用
解决mac系统docker启动mysql端口被占用 错误提示 Error response from daemon: Cannot restart container cfcf: driver failed programming external connectivity on endpoint ...
分类:数据库   时间:2021-05-24 04:06:32    阅读次数:0
03-策略模式
定义一系列的算法,把每一个算法封装起来, 并且使它们可相互替换。 策略模式把对象本身和运算规则区分开来,其功能非常强大,因为这个设计模式本身的核心思想就是面向对象编程的多形性的思想。 原来我们这么写: function computed(method, count) { let total; if ...
分类:其他好文   时间:2021-05-24 03:55:28    阅读次数:0
28012条   上一页 1 ... 12 13 14 15 16 ... 2802 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!