RESTful 程度
REST = REpresentational State Transfer
逐步接近 REST
Martin Fowler 在博客《steps toward the glory of REST》中提到
https://martinfowler.com/articles/richardsonMaturityModel.html
简单的说:
level 0 :
没有资源的概念。url 上面最后一个部分经常是个动词。例如:POST /appointmentService
。
REST = REpresentational State Transfer
Martin Fowler 在博客《steps toward the glory of REST》中提到
https://martinfowler.com/articles/richardsonMaturityModel.html
简单的说:
level 0 :
没有资源的概念。url 上面最后一个部分经常是个动词。例如:POST /appointmentService
。
以下用 st 表示 Stackstorm。
可以到 st 官方网站查看 API 文档。
如果你已经学过命令行的使用,可以加上 --debug
参数来输出与命令等价的 curl 及输出。
st 默认用 Nginx 来处理 API 请求,默认端口为 9101 。API 的地址为:https://$ST2_HOSTNAME/api
。
https://stackoverflow.com/questions/20342058/which-uuid-version-to-use
version 3/5:
根据某个命名空间和名称生成,名称相同则会产生相同的 UUID。可用于设置用户的 UUID(跟用户名唯一绑定)。一般用 version 5。
version 4:
获取随机数。用得最多的一种。会重复的概率几乎可以忽略不计。
安装地址:C:\Users\Username\AppData\Local\Programs
下载地址:https://dl.snipaste.com/win-x64-cn
每次有人看到我使用贴图功能的时候,都会问我这是什么软件,他也想下载一个用。
npm config set registry https://registry.npm.taobao.org
换回来:
npm config set registry https://registry.npmjs.org
如果只想生效一次:
npm --registry=https://registry.npm.taobao.org install xxxxx
编辑文件: C:\Users\chensf1\.docker\daemon.json
在 registry-mirrors
里添加 https://registry.docker-cn.com
,如下: