摘要:
Endpoints ========= Endpoint是一种半私有的数据结构,Moya用来解释网络请求的根本构成。一个endpoint储存了以下数据: The URL. The HTTP method (GET,POST,等). The request parameters. The parame 阅读全文
摘要:
Guardguard是一种条件判断语句,可以类比if、assert。如果条件不符合,guard的else语句就运行,从而退出这个函数。具体写法如下:func fooGuard(x: Int?) { guard let x = x where x > 0 else { // 变量不... 阅读全文