LR场景设计在Controller中新建场景,可以选择手工场景(Manual Scenario)和
面向目标场景(Goal-Oriented
Scenario)两种方式创建场景。其实,在我们真实的项目中,选择手工场景比较多,所以下面是通过学习这本书的一些心得:1、创建手工场景当录制完脚本并完善好脚本...
分类:
其他好文 时间:
2014-05-23 04:01:42
阅读次数:
277
第一、initWithNibName这个方法是在controller的类在IB中创建,但是通过Xcode实例化controller的时候用的.
第二、initWithCoder 是一个类在IB中创建但在xocde中被实例化时被调用的.比如,通过IB创建一个controller的nib文件,然后在xcode中通过 initWithNibName来实例化这个controller,那么这个cont...
分类:
其他好文 时间:
2014-05-23 00:48:18
阅读次数:
424
可能是以前记错了,总认为在ios6上使用了UINavigationController或者TabBarController会因为多了bar而影响子controller的view的frame大小。今天在xcode5.1上验证,无论ios6或者7,使用容器controller,产生了的bar都不会对子c...
分类:
移动开发 时间:
2014-05-22 04:28:02
阅读次数:
339
Spring2.5 中除了提供 @Component
注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的Spring版本中,这 3
个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释...
分类:
编程语言 时间:
2014-05-22 01:39:14
阅读次数:
322
//获取view的controller- (UIViewController
*)viewController { for (UIView* next = [self superview]; next; next =
next.superview) { UIResponder *nextRe...
分类:
移动开发 时间:
2014-05-21 23:38:35
阅读次数:
1000
relation //关联模型什么是MVC //了解 M -Model 编写model类
对数据进行操作 V -View 编写html文件,页面呈现 C -Controller
编写类文件(UserAction.class.php)ThinkPHP的MVC特点 //了解ThinkP...
分类:
Web程序 时间:
2014-05-21 23:30:10
阅读次数:
453
@Controller@RequestMapping(value = "/test")public
class TestController { @RequestMapping("/addUser") public void
addUser(@ModelAttribute(value =...
分类:
Web程序 时间:
2014-05-21 20:50:50
阅读次数:
305
本文是本人在学习网络视频的过程中的一些总结。
本文是对关于一些springMVC在使用注解的优化。
使用下面的标签,会自动引入Annotation的配置
效果等同于在配置文件中使用下面的配置
以下面的类为例子:
package com.tgb.web.controller.annotation;
import javax.servlet.http.HttpServletReq...
分类:
编程语言 时间:
2014-05-21 10:14:53
阅读次数:
284
本文是本人在学习网络视屏springMVC的过程中的学习笔记。
为了更便于理解我决定从实际使用的角度解释。
我们在浏览器输入地址
http://localhost:8080/springMVC6/user/data/toUser
界面如下:
此时后台是跳转到下面class的toUser方法的
package com.tgb.web.controller.an...
分类:
编程语言 时间:
2014-05-21 06:27:05
阅读次数:
295
带Render的方法返回值是void,在方法内部进行输出;不带Render的返回值类型为MvcHtmlString,是一个字符串。Partial和RenderPartial:直接加载视图文件内容;Action和RenderAction:重新执行一次Controller→Model→View的顺序,然...
分类:
Web程序 时间:
2014-05-21 05:54:25
阅读次数:
325