在定义model的时候,禁止转换为复数 app.model.define('project', { id: { type: INTEGER, primaryKey: true, autoIncrement: true }, name: STRING(20), created_at: DATE, upda...
//去掉base64的头部分, 转成buffer const base64 = 'iVBORw0KGgo...=='; const imageBufferData = Buffer.from(base64, 'base64'); ctx.body = imageBufferData; ctx.respo...
请求头说明 在http响应里面有几个重要的东西,Content-Type 说明文件渲染MIME类型,这是我们本文的相关处理关键。 常用的MIME类型 { " css ": "text/css" , " gif ": "image/gif" , " html ": "text/html" , " ico...
import OSS from 'ali-oss' data() { return { name: '录视频', mediaRecorder: '', // mediarecorder对象 recorderFile: '', // 视频blob文件 stopRecordCallback: '', med...
上传base64的 // base64转文件 function dataURLtoFile ( dataurl , filename ) { var arr = dataurl . split ( ' , ' ) , mime = arr [ 0 ] . match ( / : ( . *?) ; /...