上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 1.安装 Interceptor Bridge 2.开启 interceptor 和 cookie PostMan设置Cookie全局使用 PostMan设置Cookie全局使用,需要用到的接口都不需再单独设置Cookie了 1.直接在环境变量里面设置 2.在登录接口的tests,把返回值的cook 阅读全文
posted @ 2020-12-05 12:23 荆棘中的百合花 阅读(4127) 评论(0) 推荐(0) 编辑
摘要: 问题Cookie丢失 Google浏览器,跨域请求时携带的Cookie,丢失,造成登录验证失败,提示用户未登录? 下图,后台可正常获取Cookie: 下图,后台获取不到Cookie: 解决方案: 1)浏览器地址栏输入:chrome://flags/ 2) 设置SameSite by default 阅读全文
posted @ 2020-11-23 18:24 荆棘中的百合花 阅读(1457) 评论(0) 推荐(0) 编辑
摘要: 通常Postman进行接口调用时,会出现一些错误,获取数据失败。 错误对应: 400 - 错误 1)检查post,还是get方式? 2)请求头是否正确?【Conent-Type】application/json 3)检查参数格式,参数属性,参数类型是否不符合要求? 404 - 未找到 1) 检查地址 阅读全文
posted @ 2020-11-18 18:35 荆棘中的百合花 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 一、安装Postman 二、PostMan基本功能介绍 collection在postman里面相当于一个文件夹,可以把同一个项目的请求放在一个Collection里方便管理和分享,Collection里面也可以再建文件夹。 请求区域介绍: 1 Authorization:身份验证,主要用来填写用户 阅读全文
posted @ 2020-11-18 18:14 荆棘中的百合花 阅读(343) 评论(0) 推荐(0) 编辑
摘要: Cli安装命令 ng new my-project --style less --routing cd my-project ng add ng-alain npm start 使用CLI安装,是一个干净的脚手架;使用克隆代码会包含所有示例。 git clone --depth=1 https:// 阅读全文
posted @ 2020-11-16 14:43 荆棘中的百合花 阅读(236) 评论(0) 推荐(1) 编辑
摘要: NG-ALAIN 一个基于 Antd 中后台前端解决方案,提供更多通用性业务模块,让开发者更加专注于业务。NG-ALAIN 是一个企业级中后台前端/设计解决方案脚手架,我们秉承 Ant Design 的设计价值观,目标也非常简单,希望在Angular上面开发企业后台更简单、更快速 前序准备 环境:n 阅读全文
posted @ 2020-11-10 18:47 荆棘中的百合花 阅读(395) 评论(0) 推荐(0) 编辑
摘要: NG-ZORRO Ant Design of Angularng-zorro-antd 是遵循 Ant Design 设计规范的 Angular UI 组件库,主要用于研发企业级中后台产品。 安装步骤 1.安装脚手架工具$ npm install -g @angular/cli2.创建项目$ ng 阅读全文
posted @ 2020-11-10 18:44 荆棘中的百合花 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 常用的创建命令 ng generate <schematic> [options] class 类 component 组件 directive 指令 enum 枚举 interface 接口 module ngModel pipe 管道//管道格式化数据 service 服务 举例: 添加服务:n 阅读全文
posted @ 2020-11-10 18:40 荆棘中的百合花 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Angular2+项目搭建 安装Angular CLI 安装全局cli脚手架:npm install -g @angular/cli 创建项目 ng new <project-name>, 其中:<project-name>是Angular项目名称如:ng new my-app 定位到项目目录进行后 阅读全文
posted @ 2020-11-09 14:07 荆棘中的百合花 阅读(83) 评论(0) 推荐(0) 编辑
摘要: directive指令: var myModule = angular.module(...); myModule.directive('directiveName', function factory(injectables) { var directiveDefinitionObject = { 阅读全文
posted @ 2020-11-07 18:34 荆棘中的百合花 阅读(238) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页