12 2019 档案
angular http请求头部信息设置
摘要:1、一个 const headers = new Headers({ 'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8', 'Accept': '*!/' }); const params = 'username='  阅读全文
posted @ 2019-12-24 10:46 奇迹般若果 阅读(6289) 评论(1) 推荐(0)
css的filter属性
摘要:原图: 1)filter: grayscale(100%) // 灰度100% 2)filter: blur(5px) // 模糊5px 3)filter: brightness(300%) // 3倍亮度 4)filter: contrast(200%) // 200%对比度 5)filter:  阅读全文
posted @ 2019-12-23 14:42 奇迹般若果 阅读(1496) 评论(0) 推荐(0)
angular使用ngrx做状态管理
摘要:1、在actions文件夹下创建action文件appName.action.ts import { Action } from "@ngrx/store"; export const types = { UPDATE_APPNAME: "UPDATE_APPNAME" } export class 阅读全文
posted @ 2019-12-05 16:07 奇迹般若果 阅读(1458) 评论(0) 推荐(0)