w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
Fastify 中文教程
开始阅读
下载APP,阅读更畅快
教程说明:
教程目录:
入门
Fastify 入门
Fastify 服务器方法
Fastify 路由
Fastify 日志
Fastify 中间件
Fastify 钩子方法
Fastify 装饰器
Fastify 验证和序列化
Fastify Fluent Schema
Fastify 生命周期
Fastify 回复
Fastify Request(请求)
Fastify 错误处理
Fastify Content-Type 解析
Fastify 插件
Fastify 测试
Fastify 基准测试
Fastify 如何写一个好的插件
Fastify 插件漫游指南
HTTP2
长期支持计划
TypeScript与类型支持
Serverless
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
入门
Fastify 入门
Fastify 服务器方法
Fastify 路由
Fastify 日志
Fastify 中间件
Fastify 钩子方法
Fastify 装饰器
Fastify 验证和序列化
Fastify Fluent Schema
Fastify 生命周期
Fastify 回复
Fastify Request(请求)
Fastify 错误处理
Fastify Content-Type 解析
Fastify 插件
Fastify 测试
Fastify 基准测试
Fastify 如何写一个好的插件
Fastify 插件漫游指南
HTTP2
长期支持计划
TypeScript与类型支持
Serverless
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }