作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 JSPDF 保存 PDF 文件。我得到了这个,但下一个任务是将我的 PDF 保存在服务器文件夹中,而不是在我的本地计算机上。我的功能是:
function generatePDFFile(elem) {
var date = new Date();
var filename = date.getUTCDate()+date.getTime();
const el = document.querySelector('#divInvoiceDLG')
el.scrollIntoView()
$(el).css("overflow", "hidden");
html2canvas(el, {
useCORS: true,
allowTaint: true,
letterRendering: true,
logging: true,
onrendered: function (canvas) {
var quality = [0.0, 1.0];
var img = canvas.toDataURL("img/png",quality);
var doc1 = new jsPDF();
doc1.addImage(img, "JPEG", 1, 1);
doc1.save( filename);
},
});
}
最佳答案
我可以用 C# 代码做到这一点。
%@ WebHandler Language="C#" Class="Attachments" %>
using System;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Script.Serialization;
public class Attachments : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
context.Response.Expires = -1;
try
{
HttpPostedFile postedFile = context.Request.Files[0];
string PracticeId = HttpContext.Current.Profile.GetPropertyValue("PracticeId").ToString();
string directory = HttpContext.Current.Request.Form["Directory"];
Guid newGuid = Guid.NewGuid();
string savepath = context.Server.MapPath(ConfigurationManager.AppSettings["DocumentsPath"] + "/" + PracticeId + "/" + directory);
if (!Directory.Exists(savepath))
{
Directory.CreateDirectory(savepath);
}
string filename = newGuid + "." + postedFile.FileName.Split('.').Last();
postedFile.SaveAs(savepath + @"\" + filename);
ResponseFile objResponse = new ResponseFile
{
path = newGuid + "." + filename.Split('.').Last(),
fileName = postedFile.FileName
};
var jSon = new JavaScriptSerializer();
var outPut = jSon.Serialize(objResponse);
context.Response.Write(outPut);
}
catch (Exception ex)
{
context.Response.Write("Error: " + ex.Message);
}
}
public bool IsReusable {
get {
return false;
}
}
}
关于javascript - JSPDF 保存在本地系统上,但我想将它保存在服务器上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47867930/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!