码迷,mamicode.com
首页 >  
搜索关键字:platform services controller    ( 17684个结果
初学iOS开发之简易计算器
今天学了下一个简易计算器,自己做时遇到了忘记把textfield代理给View Controller,导致按回车键时不能自动跳转到下一行输入,具体代理如下图所示。在此步骤后,在ViewController.h添加具体添加如下图。在添加代理模式后,在ViewController.m 添加下面的代码,就...
分类:移动开发   时间:2014-05-13 18:29:11    阅读次数:299
ThinkPHP学习(五)图上验证码
今天用到图上验证码的功能,在网上找到ThinkPHP的以下代码: Public function verify(){ import('think.Image'); Image::buildImageVerify(); }添加到Controller中,通过地址“http://localhost/index.php/passport/index/verify”来访问,却提示以下错误:Cla...
分类:Web程序   时间:2014-05-13 14:43:19    阅读次数:449
vargrind 安卓apk
上层为安卓, 下层为调用c/c++ 库 1、将vargind 按官网方法下载源码编译  得Inst目录 2、通过win 下安卓sdk 中 platform-tools 中的adb push Inst 到/data/local 下 3、可把adb.exe所在目录 设置到系统环境变量中 4、在cmd 中把执行adb push  Inst /data/local/ 5、adb sh...
分类:移动开发   时间:2014-05-13 14:03:30    阅读次数:445
MVC
M Model 模型数据V View 视图(界面)C Controller控制器模型中不能拥有控制器和视图,模型有可能用来重用的, 包含了控制器就不能重用了,因为模型脱离控制器,就不能重用了视图不能直接访问模型视图和模型的联系都是通过控制器控制器向模型拿到数据展示到...
分类:Web程序   时间:2014-05-13 10:39:11    阅读次数:258
构建基于CXF的WebService服务(3)-- 利用拦截器实现权限验证
CXF通过拦截器实现权限验证...
分类:Web程序   时间:2014-05-13 09:27:07    阅读次数:360
ios项目开发(天气预报项目):
本项目基于 《使用storyboards建立 Navigation Controller and Table View》 http://uliweb.cpython.org/tutorial/view_chapter/424 创建, 代码中使用了 静态的 tableviewcell 增加了 textview,url,json数据解析 部分代码片段:  // // city...
分类:移动开发   时间:2014-05-13 08:19:24    阅读次数:423
构建基于CXF的WebService服务(2)-- 利用CXF提供的wsdl2java工具创建客户端
wsdl2java工具的使用及客户端端调用...
分类:编程语言   时间:2014-05-13 06:32:43    阅读次数:346
Basic chkconfig Command Examples in Linux
ThisisourongoingLinuxcommandserieswherewearegoingtoreviewhowwecanusechkconfigcommandefficientlywithit’savailableparameters.TheChkconfigcommandtoolallowstoconfigureservicesstartandstopautomaticallyinthe/etc/rd.d/init.dscriptsthroughcommandline.Let’sseesome..
分类:系统相关   时间:2014-05-13 04:26:32    阅读次数:469
400 Bad Request The request sent by the client was syntactically incorrect ().
项目中一直出现400错误,后面搜索下,发现如下内容。SpringMVC报错信息为The request sent by the client was syntactically incorrect ()在数据绑定的时候一定要主意Controller方法中的参数名和jsp页面里的参数名字是否一致或者按...
分类:其他好文   时间:2014-05-12 19:34:51    阅读次数:221
SpringMVC中Controller跳转到另一个Controller方法
1、直接Redirect后加Controller/ActionResponse.Redirect("/User/Edit");returnRedirect("/User/Edit");returnRedirectToAction("about","Home");Response.Redirect("...
分类:编程语言   时间:2014-05-11 18:14:36    阅读次数:315
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!