0

这是不将表单数据发布到 php 服务器的示例代码,接收到空数据

下面的代码会将完整的 html 数据发送到 php,在 php 中我将转换为 html 的 doc 格式并开始自动下载,但当前节点 js 没有将 post 值发送到 php 服务器到 url http:// domain.com/index.php

exports.download = function (req, res) {
    var doc = "<html><body>content</body></html>";
    var doctype = req.body.doctype; 
    var fs = require('fs');
    var request = require('request');
    var request_url_docx = 'http://domain.com/index.php';
    var r = request.post(request_url_docx);
    var time_stamp = Date.now()/1000;
    var form = r.form();
    form.append('filename', doctype+"_"+time_stamp);
    form.append('filedata',doc);
    r.pipe(res);
}
4

1 回答 1

0

当我找到一个中间位置时,您可以在事件发生时使用简单的 post to action 将 URL 发送到 php 文件,您可以在其中处理 phpdoc 模块中可用的 HTML 的文档部分,您可以在 Node Js 中生成 HTML 到 DOC

这对我有用。

于 2013-11-26T05:57:27.997 回答