报名 +1
炉石传说 +1
class TwelveDaysSong
end
a = TwelveDaysSong.new
#I could wrote it like this too
a = ::TwelveDaysSong.new
module Twelve
class TwelveDaysSongs
end
end
b = Twelve::TwelveDaysSong.new
#b is not equal to
a = ::TwelveDaysSong.new
#neither
a = TwelveDaysSong.new
源链接:https://stackoverflow.com/questions/25829184/what-does-mean-in-ruby-syntax?answertab=oldest#tab-top
@zhangzitao @huacnlee 谢谢。
支持
@jasl 非常感谢你的回复。
@huacnlee 待遇相关部分存在严重虚假成分,大学室友去年在品米工作整天被迫加班还扣工资,触目惊心。
加载的 scaffold.js.coffee,可能和自身的文件名不同 所以没有 css 效果 http://railscasts.com/episodes/258-token-fields-revised
如何报名
建议都试试,应该有一个顺手的。
书都很新。
之前一些域名没有备案也可以访问,现在就不行了。
为什么最近域名都没法访问
可能是随机出现的新手禁止发帖的情况。不知道这条是否可以回复成功。
ActiveModel # model interfaces for Rails
ActiveRecord # Object-relational mapping in Rails
ActiveRecord = ActiveModel + Database Support
#sql语言可以这样
select distinct(event_time) from table_name where ...
使用rails方式就不清楚了
RubyChina 氛围真好,看上去这么尖锐的论坛建议,下面评论者却依然是和和气气的讨论解决方案而不是剑拔弩张的回避问题。
曾在上面买过课程,目前还没有怎么看。
@wawayu 现在不是还没有开放售票吗?
hash = Hash.new
%w(cat dog wombat).each_with_index do |item, index|
hash[item] = index
end
hash #=> {"cat"=>0, "dog"=>1, "wombat"=>2}
#主要是rails中声明的虚拟字段 reset_token,sidekiq无法读取
class User < ApplicationRecord
attr_accessor :remember_token, :activation_token, :reset_token
end
#然后报错 ID为nil, 由于@user.reset_token=nil不存在,然后缺少url参数sidekiq报错,将@user.reset_token修改。
<h1>重置密码</h1>
<%= link_to "重置密码", edit_password_reset_url(@user.reset_token, email: @user.email) %>
缺少 ID 的话,为什么同步发送都正常,异步却不行? 正常的跳转 url 也是没有 ID 的:http://localhost:3000/password_resets/QLFbY9AF9fAKniiU0YQLWQ/edit?email=hwec%40gmail.com
@ForrestDouble @yfractal 谢谢。目前直接同步发送都正常,但是异步在后台 sidekiq 执行发送和 View 没有什么关系吧。只是让 sidekiq 悄悄的发送邮件,也不需要跳转界面。
class User < ApplicationRecord
# 发送重置密码邮件正常
def send_password_reset_email
UserMailer.password_reset(self).deliver_now
end
end
#路由
resources :password_resets
group /new 页面写文章 ,字段应该有:所属分类 node
ubuntu server 16.04(物理机)
怎么感觉这样也行。
def a
self.name
end
隐藏彩蛋。。这都可以
https://ruby-china.org/topics/25959 建议试试 ruby-prof,查看一下 CPU 消耗在哪些地方。