今天开始研究rails路由基本用法资源路由resources:members配置资源路由后,自动生成默认的7个动作动作地址controller中方法作用index/membersindex显示列表show/members/:idshow显示详情new/members/newnew,方法中要声明对象进入新建表单页create/memberscreate创建edit/membe..
分类:
其他好文 时间:
2014-12-12 19:23:29
阅读次数:
191
security-sdk-1.0.jar已经存在于D:/secServerSDK-test/src/main/resources/lib下报错如下:xxxxxx@xxxxxxxx /d/secServerSDK-test/src/main/resources/lib$ mvn install:ins...
分类:
Web程序 时间:
2014-12-12 16:33:21
阅读次数:
527
一般来说,从app store上面 下载下来的image位置,都是在 /Applications 下面使用命令创建安装U盘,(备份一下命令,太长,记不住)sudo /Applications/Install\ OS\ X\ Yosemite.app/Contents/Resources/create...
分类:
移动开发 时间:
2014-12-12 16:30:49
阅读次数:
149
第三方插件可在:http://jquerymobile.com/resources/#Plugins中查找,jQuery Mobile支持多种形式的扩展:主题:一个CSS文件,或一组图片,或者两者兼容。插件:一个JavaScript文件,一个css文件,为框架增添新的部件(data-role...
分类:
其他好文 时间:
2014-12-11 12:07:33
阅读次数:
193
1、使用Properties.Resources类,这种方法需要你事先已经将图片添加到项目中来了
双击Properties -->添加资源-->图片-->png/jpg
命名比如 :abc.png
然后在解决方案里面,删掉该图片,把要做背景的图片 拖进来,改成同名
代码 button2.BackgroundImage = 命名空间名.Properties.Resources.图片名称;
2、直接用项目路径来引用图片(不能继承到 exe文件里)
button.BackgroundImage =Bitma...
public abstract Resources getResources () Return a Resources instance for your application's package.BitmapFactoryextends Objectjava.lang.Object ? ...
分类:
移动开发 时间:
2014-12-10 10:40:13
阅读次数:
195
Mongoose allows you to easily select resources by ID from your MongoDB. This is an important aspect to creating an API.Server.js'use strict';var expre...
分类:
其他好文 时间:
2014-12-10 07:05:18
阅读次数:
253
通过aapt工具查看文件: aapt d --values resources CWService.apk 截取其中的部分内容: resource 0x7f040001 com.misoo.pk01:string/app_name: t=0x03 d=0x0000000b (s=0x0008 r=0x00) (string8) "CW_system_s...
分类:
其他好文 时间:
2014-12-10 00:38:37
阅读次数:
126
if (i == 0) { pictureBox1.Image = Properties.Resources._1; i++; radioButton2.Checked = true; return; } if (i == 1) { pictureBox1.Image = Properties.R....
1.从资源中获取位图(Bitmap) 可以使用BitmapDrawable或者BitmapFactory来获取资源中的位图。 当然,首先需要获取资源:Resources res=getResources(); 使用BitmapDrawable获取位图 (1)使用BitmapDrawable ...
分类:
移动开发 时间:
2014-12-09 17:20:20
阅读次数:
238