布局方法一

2016-04-30
阅读 4 分钟
1.8k
说明:关键代码.ui-courses {width: 1020px;},.ui-courses-item{width: 320px;margin-right: 20px;}利用外部的div撑开多20个像素。

nej jst模板语言标签

2016-04-16
阅读 5 分钟
1.9k
复制到这里一下,方便日后查询,源地址如果模板中存在 </texterea> 将/换成&#47; 如何使用jst模板 代码举例: {代码...} 后续可以使用_$get接口获取整合数据的结果 代码举例: {代码...} JST语法 表达式 ${} 描述:求值表达式,表达式中不可以包含 “{”或者“}” 语法: {代码...} 范例: {代码...} ${% %} 描述...

记录下Flarum论坛API设计

2016-04-14
阅读 2 分钟
4.9k
Every Flarum forum exposes a publicly-accessible JSON API that can read and write forum data. It conforms to the JSON-API 1.0 specification.

Rust Patterns

2016-04-11
阅读 3 分钟
2.8k
if let allows you to combine if and let together to reduce the overhead of certain kinds of pattern matches.