拖放Outlook电子邮件到浏览器,无需第三方库

时间:2019-06-20 14:24:52

标签: javascript html asp.net-mvc drag-and-drop

我正在使用html和java脚本创建放置区。当我放下Outlook邮件时,只能得到

import { raw } from 'objection';

const errors = await Errors
  .query()
  .select(
    raw("time_bucket_gapfill(?, timestamp, ?, ?) AS bucket", [bucketWidth, startTS, endTS]),
    raw('COALESCE(count(timestamp), 0) AS count'),
  ).where('device_id', deviceId)
  .andWhere('timestamp', '>=', startTS)
  .andWhere('timestamp', '<=', endTS)
  .groupBy('bucket')
  .orderBy('bucket');

无法获取邮件和附件。

将已丢弃的Outlook电子邮件“收件人”,“发件人”,“主题”,消息和附件放入浏览器中,而没有任何第三方库(仅使用html和javascript或asp.net mvc应用程序)是真正的问题。

0 个答案:

没有答案