RuoYi
2023-12-05 f74454b61a8f0050b1cdcfbf0c46b7c572c46e81
ruoyi-ui/src/utils/ruoyi.js
@@ -228,12 +228,6 @@
}
// 验证是否为blob格式
export async function blobValidate(data) {
  try {
    const text = await data.text();
    JSON.parse(text);
    return false;
  } catch (error) {
    return true;
  }
export function blobValidate(data) {
  return data.type !== 'application/json'
}