我的问题是:在这个片段
检视单键方法:Object#singleton_methods(all=true)
的描述中,不是应该注意到很可能就是include Concerns::ImageUploadable
的问题了吗?因为 2 个puts
之间并没有几行代码啊。。。
我表示这个天气穿着挺舒服的。
请问能不能发一下地址?我感觉我已心有所属了。:laugh:
@ibachue 你这么一说,我对转 Java 有信心了
PS:楼上的为何要破坏阵型?!
我一般导入用 Roo,导出用 Axlsx
看起来可诱人了。。。不知何时能在长三角开。
第四条在 rails3 的时代是成立的,4 时代的 all 已经变成 lazy load 了
sometimes too young
实例变量不是不能在外部直接访问只能定义 set 和 get 方法间接访问的么?
@catherine 一直以为头像是你本人。。。
def each_setup(&block)
@setups.each do |setup|
block.call setup
end
end
# 这里的setup是数组中的元素,也就是Proc对象,block.call setup 则将这个Proc对象传递给运行each_setup方法时的setup.call
# 基本上就是proc{puts "one"}.call
我觉得用 js 来处理更好一点。
@easonlovewan 不可以 join 哦~,join 后得到 string,无法 map
Blizzard Fan 过来表示祝贺!
@hww 你这里应该用 Group.includes(:hosts)
吧
把数组中的每个字符串转化为符号,再将这个数组展开为 attr_accessor
的参数列表
你rails c
, 随便 new 一个用户就知道有没有了
brew tap homebrew/dupes
brew install apple-gcc42
export CC=/usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/gcc-4.2
export CXX=/usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/g++-4.2
export CPP=/usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/cpp-4.2
brew uninstall v8
gem uninstall libv8
gem install therubyracer -v '0.12.2' # any specify version
ids.map{|id| A.find_by(XX: id).pluck(:id)}
这样可行么?
@sandy_xu @tiseheaini @lgn21st 谢谢 3 位,通过以下方法,curl 已经完全正常了:
cd /usr/local/etc/openssl
security find-certificate -a -p -Z /Library/Keychains/System.keychain/System/Library/Keychains/SystemRootCertificates.keychain > cert.pem
vim ~/.bash_profile
export SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem
source ~/.bash_profile
RestClient::SSLCertificateNotVerified (SSL_connect returned=1 errno=0 state=error: certificate verify failed):
招 ruby 的,为何要熟练使用 Python 而只需了解 ruby。。。
@u1453357893 api 也是 action,一样的。
@u1453357893 你传就是了,和定义没关系啊。
def some_api
token = params[:token]
end
#routes.rb
get 'some_api', to: 'feeds#some_api', as: 'some_api'
#传参数
<%= link_to 'some api', some_api_path(token: token) %>
定义 api 的时候后面不需要跟参数啊。