表带IO
用于使用带有预定义规则的 socket.io 的模块。 StrapIO 将查看每个操作的角色权限。 StrapIO 正在寻找可以访问给定内容类型和操作类型的所有角色。
安装
npm i strapio
config/functions/bootstrap.js process . nextTick ( ( ) => {
strapi . StrapIO = new ( require ( "strapio" ) ) ( strapi ) ;
} ) ;
用法
服务器
api//controllers/.js module . exports = {
async create ( ctx ) {
let entity ;
if ( ctx . is ( "multipart" ) ) {
1