芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/utils/checkFormValidity.js
import { getYupInnerErrors } from 'strapi-helper-plugin'; const checkFormValidity = async (data, schema) => { let errors = null; try { await schema.validate(data, { abortEarly: false }); } catch (err) { errors = getYupInnerErrors(err); } return errors; }; export default checkFormValidity;