使用history.back()进行返回时,有时会提示“网页已过期”,多数是因为目标页面的form为post提交方式,而且是表单已经提交后的响应页面,无法找到form中的具体参数,而“报错”。具体解决办法: 一、在要返回的目标页面中,添加 二、将目标页面的form的method="post"去掉,或...
分类:
编程语言 时间:
2014-07-16 23:15:03
阅读次数:
267
DebugerGreat questionsThese questions will solve most bugs:what method shows the symptom ? what lines of code produces that symptom ?what is the state...
分类:
编程语言 时间:
2014-07-16 23:13:29
阅读次数:
367
输入命令:alter system set utl_file_dir='/home/oracle/logmnr' scope=spfile;报错:出错原因:没有用spfile文件启动数据库解决办法:以spfile文件启动数据库。1:进$ORACLE_HOME/dbs路径,看是否有该spfile文件2...
分类:
其他好文 时间:
2014-07-10 14:17:21
阅读次数:
466
1.在定义函数时:如果有参数,则参数可有类型但是不加长度。2.在执行函数:var/variablevar_namevar_type(如果数据类型是number则没有长度,如果数据类型是varchar2,则可以写长度) call(此处不能用exec)函数名(参数)into:var_n...
分类:
其他好文 时间:
2014-07-10 13:00:04
阅读次数:
216
mac 10.9.1xcode 5.0.2cocos2dx 2.2.2cocosBuilder 3.0-alpha5问题1、 每次脚本有改动,Xcode都要清理。问题2、Get data from file(.ccbi) failed!问题3、attempt to call field 'setPo...
分类:
其他好文 时间:
2014-07-10 12:58:02
阅读次数:
328
.NET下的23中设计模式。※创建型模式篇●单件模式(Single Pattern)●抽象工厂模式(Abstract Factory)●建造者模式(Builder Pattern)●工厂方法(Factory Method)●原型模式(Protype Pattern)※结构型模式篇●适配器模式(Ada...
分类:
Web程序 时间:
2014-07-10 11:11:42
阅读次数:
242
Call requires API level 3 (current min is 1): android.content.res.Resources#getBoolean参考文档:http://stackoverflow.com/questions/10322482/android-lint-er...
分类:
移动开发 时间:
2014-07-10 00:41:18
阅读次数:
280
RPC(remote produce calL)RPC是远程过程调用协议,它是基于C/S模型调用的机制,客户机向服务器端发送调用请求等待服务器应答,是一种典型的请求应答机制,大致过程可以理解为本地分布式对象向本机发请求,不用自己编写底层通信本机会通过网络向服务器发送请求,服务器对象接受参数后,经过处...
分类:
其他好文 时间:
2014-07-07 22:40:52
阅读次数:
353
之前自定义了一个AlertDialog对话框,第一次点击时正常,但第二次调用时会出现错误:java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
关于这个错误纠结了我...
分类:
移动开发 时间:
2014-06-28 07:28:39
阅读次数:
278