摘要:
1、 render 一下三种渲染方式的渲染结果是一样的: 渲染结果: 渲染结果: 所以,在返回html时,如果不调用html_safe方法,html是无法正确解析的。 2、empty、blank "somestring".empty?=>false "".empty?=>true nil.empty 阅读全文
摘要:
1、远程仓库中的项目,同步到本地,后期通过GitHub进行协同工作 克隆到本地:$ git clone url 同步:$ git add $ git commit -m 'commit' $ git push 2、本地已存在的项目,同步到远程仓库中, $ git remote add origin 阅读全文