我一直在考虑使用 prismatic/schema 在 clojure 中进行打字和记录,但我很难找到完整的文档。github 自述文件提供了一些有用的基本使用信息,但给我留下了很多悬而未决的问题(例如,为什么需要 (s/one s/Str "s") 中的 "s" 参数)。有谁知道棱柱模式的完整教程或文档来源?
问问题
698 次
1 回答
7
我认为最好的起点是最初的 Clojure Conj 2013 演示文稿:
以下是 GitHub 上的各种文档:
- https://github.com/plumatic/schema
- http://plumatic.github.io/schema-0-2-0-back-with-clojurescript-data-coercion/
- http://plumatic.github.io/schema-for-clojurescript-data-shape-declaration-and-validation/
- https://github.com/plumatic/schema/wiki/Recursive-Schemas
- https://github.com/plumatic/schema/wiki/Defining-New-Schema-Types-1.0
- http://plumatic.github.io/schema/
由于他们将其重命名为Prismatic
,Plumatic
因此看起来他们已将旧博客文章等合并到 Plumatic github 帐户中。其他博客条目:
- https://camdez.com/blog/2015/08/27/practical-data-coercion-with-prismatic-schema/
- https://christopherdbui.com/an-overview-of-prismatics-schema-library-for-clojure/
- http://pygments.org/demo/1076301/
- http://codurance.com/2015/09/14/clojure-schemas-are-swagger/
- https://blog.juxt.pro/posts/component-meet-schema.html
- http://www.infoq.com/news/2014/02/prismatic-schema-coercion
享受!
于 2016-03-29T05:05:24.160 回答