- 浏览: 210298 次
- 性别:
- 来自: 厦门
最新评论
-
icesort:
我的项目有时候也会出现连接失败的情况,报错如下,跟你的优点像, ...
Android AVD之Socket Connect Time Out -
lzqustc:
这个都是2009年的事了,估计当时的rails版本2.3.0比 ...
Rails批量删除(更新) -
lzqustc:
这个都是2009年的事了,估计当时的rails版本2.3.0比 ...
Rails批量删除(更新) -
bzhao:
好文,抚慰我们的心灵!
转眼青春的散场 -
dohkoos:
太复杂了,这里有更简单的。http://sangua.com/ ...
Rails批量删除(更新)
文章列表
JavaEye http://www.iteye.com
iease我易 http://search.iease.com.cn
51dir http://www.51dir.com
发生网 http://www.8sheng.com
友播网 http://www.yobo.com
乐道 http://www.likenote.com
上海印客 http://www.inker.com.cn
上海神图 公司目前开发的网站在http://www.x-navi.cn
,目前在试运行。
财帮子 http://www.caibangzi.com
八音盒 ht ...
- 2009-02-04 13:35
- 浏览 1356
- 评论(0)
Standing aside to see the phantoms of these days go by me, I have skinned my heart and my knees. And now, I know there's always some seasons to feel not good enough. So please remember the song of Angel: Spend all your time waiting for that second chance and for a break that would make it okay.As we ...
- 2009-02-03 16:09
- 浏览 1061
- 评论(0)
方法一、
def plain_text(text,replacement=" ") text.gsub(/<[^>]*>/){|html| replacement} end
str ="<p><strong><em><span style=\"text-decoration: underline;\"><span style=\"font-size: large; color: #ff0000;\"> 我们没有惊天的抱负,我们没有动地 ...
- 2009-02-03 14:05
- 浏览 2235
- 评论(0)
1.
下载
fckeditor_plugin-0.5.1.zip
,目前版本为0.5.1
2. 解压到vendor\plugins目录下,并重命名为fckeditor
3. 到该应用程序根目录下,运行rake fckeditor:install,执行自动安装
4. 在相应的layout(以./layouts/company.html.erb为例)中添加
<%= javascript_include_tag :fckeditor %>
5.
将修改视图中的相应tex ...
- 2009-02-03 12:51
- 浏览 1703
- 评论(0)
文/董彬引言Haml 是一种简洁优美的模板语言,可以应用于Ruby on Rails、 PHP等Web开发平台,可以大大缩减模板代码,减少冗余,提高可读性。并且Haml是一种完备的模板语言,没有牺牲当前模板语言的任何特性。Haml由 Hampton Catlin发明 ...
- 2009-02-02 09:54
- 浏览 2881
- 评论(0)
①、下载插件: will_paginate(附件), 解压到.\vendor\plugins下
或者在线安装: ruby script/plugin install svn://errtheblog.com/svn/plugins/will_paginate
②、重启服务器
③、修改相应的controller,如下:
def index @companies = Company.find(:all) @companies = Company.paginate :page => params[:page]|| 1 ...
- 2009-01-20 14:19
- 浏览 1105
- 评论(0)
development:
adapter: mysql
host: 192.xxx.xxx.xxx
port: 53306 #默认为3306
encoding: utf8
database: boast
pool: 2
username: root
password: password
socket: /tmp/mysql.sock
test:
adapter: mysql
host: 192.xxx.xxx.xxx
...
- 2009-01-20 13:08
- 浏览 3461
- 评论(0)
ActiveRecord::Base.establish_connection( :adapter => 'mysql',# :host => 'localhost', #本地 :host => '192.xxx.xxx.xxx', :port => 53306, #默认为3306 :password => 'password', :encoding => 'utf8', :username => 'ro ...
- 2009-01-20 13:02
- 浏览 1048
- 评论(0)
//删除所有由脚手架生成的文件
例如删除由ruby script/generate scaffold tests title:string生成的所有文件,
方法:ruby script/destroy scaffold tests
//
- 2009-01-20 12:57
- 浏览 1776
- 评论(0)
关系:
class Company < ActiveRecord::Base
has_many :regist_infos
end
class RegistInfo < ActiveRecord::Base
belongs_to:company # comp
- 2009-01-20 12:47
- 浏览 2010
- 评论(0)
@companies = Company.find(:all,
:conditions =>["companies.id = myusers.t_company_id", params[:id]], :include => [:myuser] )
即:include关键字,
- 2009-01-20 12:43
- 浏览 2794
- 评论(0)
①、安装mysql时,默认字符集为latin1 (无须改动)
②、通过这种方式生成你的应用(myblog),以便配置mysql: rails myblog -d mysql
- 2009-01-20 12:35
- 浏览 2186
- 评论(0)
安装插件:upload_column,建议先下载压缩包,然后直接解压到.\vendor\plugins下,再重启服务器,加载插件。当然可以参考网上的在线安装方法:命令如下:
ruby script/plugin install svn://rubyforge.org/var/svn/uploadcolumn/tags/stable
PS:没试过O(∩_∩)O哈哈~
参考 http://viviworld.blogbus.com/logs/28505967.html
修改相应的字段属性:例如
- 2009-01-20 12:27
- 浏览 2053
- 评论(1)
首先:确定数据库的设计,下面将省市地区数据以如下方式存入数据库的cities表(看附件): +--------+--------------+ | id | cname | +--------+--------------+ | 110000 | 北京市 | 第1级 | 110100 | 北京市 | 第2级 | 110101 | 东城区 | 第3级 | 110102 | 西城区 | 第3级 +--------+--------------+ 那么,要取所有省(直辖市 ...
- 2009-01-20 12:14
- 浏览 4839
- 评论(0)
附件scaffold.rar解压后,把scaffold整个文件夹拷贝到
C:\ruby\lib\ruby\gems\1.8\gems\rails-2.2.2\lib\rails_generator\generators\components下(将原scaffold文件夹覆盖掉)
接着就可以运行脚手架了,例如ruby script/generate scaffold tests title:string
完成后,就OK了,哈哈~ (当然不要忘了给你的工程安装haml插件)
- 2009-01-06 16:25
- 浏览 1188
- 评论(0)