callback 默认的 context 是 ajax 的 options 对象。JavaScript 中 this 是调用时绑 定的,还不是定义时绑定。一般把调用时绑定 this object 称为 context。问这样的问题 说明 JavaScript 还没入门,搜索多了解下 JavaScript 中的 this。
jQuery 是支持通过 option context
来设置 callbacks 绑定的 this object,不过
jQuery.post
是不支持 options,可以直接用 jQuery.ajax
。
另外碰到这种问题你把变量用 console.log
打出来不就清楚了吗?
$(".btn-onoff").click(function(){
$.post(
"test",
{
onoff: $(this).html(),
id: $(this).parent('div').attr("id")
},
function(data, status) {
console.log this; // => Object: {url: 'onoff=xx&id=xx', type: 'GET', ...}
}
);
$.ajax({
url: 'test',
type:'POST',
context: this,
data: {
onoff: $(this).html(),
id: $(this).parent('div').attr("id")
},
success: function(data, statuts) {
console.log this; // => [<button class="btn-onoff">...</button>]
}
);
});
#5 楼 @lianyutao 如果用了 rvm gemset 只能用 gemset 中的 gem。在启用了 bundle 后只能 require Gemfile 中的 gem
#3 楼 @lianyutao 先 require 'rubygems'
Reduce 的结果会被作会 reduce 的输入,直到 reduce 成一个。要不然后不就只能顺序执行了么。
The reduce function must return an object whose type must be identical to the type of the value emitted by the map function. -- Troubleshoot the Reduce Function
cp ~/.ssh/blog.pub ~/.ssh/authorized_keys
Bang! 之前设置的 pub key 全没了。
另外一个有用的是 ssh agent,这样你可以给 key 设置个 passphrase 增加安全性但又不用每次去输入 passphrase。而且通过 ssh agent forward,可以实现在登录服务器后,仍然使用本机的 key,好处是部署的时候,不用把服务器的 key 加到像 github 这样的服务中去。这样服务器被黑,别人也没法访问你的 github
而且累记和一般是用在前端的图表,在前端自己去累加下也可以。
按月统计,取出来再求 accumulation sum。
需要安装 patch 过的字体 https://github.com/Lokaltog/powerline-fonts 。
rxvt-unicode-256color
只是安装 urxvt
。安装好后通过 Xresources 配置字体。如果用 gvim 可以直接在 vim 里设置字体。
加密完 base64 一下
#6 楼 @lvjian700 Marked
Mou 主要没有 fenced code 和语法高亮。Marked 直接用你喜欢的编辑器编辑
第 2 个记不住
如果是处理字符串,可以 to_s
,数字可以 to_i
to_f
先。Rails present?
presence
可以方便判断各种空值
HTML 4 格缩进,一会就缩得看不见了
19wu 升级碰到的坑都在这个 PR https://github.com/saberma/19wu/pull/427
供参考
#15 楼 @yinxiaomei 简单点说就是 bot 听到让她部署的话,她先 git clone
到本地,check out 出来相关的 branch, cd
进行后运行 cap deploy。第一次用了 cap 是为了偷懒,用了 cap 的 cache 模式,不用每次重新 clone。是也完全自己写脚本,如果没 clone 过就重新 clone,有 clone 过只需要 fetch 一下。
https://encrypted.google.com/search?hl=en&q=railscast+dynamic+form
虽然是 pro 的,不过有 github 的源代码可以参考
这个得在命令行下运行
Github 邮件一般都是用产生这条 notification 的用户名字作为发件人名字
https://code.google.com/p/wkhtmltopdf/ 也提供了 wkhtmltoimage