0

我只是尝试使用 jquery $.post() 将一些信息传递给 PHP 脚本,然后将该信息写入文本文件。帖子工作得很好。据我所知,没有引发任何错误......但是没有创建文件,当我把文件放在那里时,它没有被写入。我错过了什么吗?这是我的代码。

JavaScript

  var ajaxData = { IGC: JSON.stringify(containerObj), filename: newFilePath };
  $.post( "../php/generateIGC.php", ajaxData, function(data) {
        $('#generated_textarea').val(data)
  })

最初我试图解释正在发送的内容并将其写入文件。

PHP

<?php
  $data = json_decode(stripslashes($_POST['IGC']), true);
  $myFile = $_POST['filename'];
  $handle = fopen($myFile, 'w'); //or die('Cannot open file:  '.$myFile); 
  fwrite($handle,$data);
  fclose($handle);
  echo "File successfully created";
?>

然后我放弃了,只是尝试写入我为测试而创建的文件,即使这样也行不通。

<?php

  $data = 'dfjlsdkfsdlfkj';
  $handle = fopen('test.txt', 'w'); //or die('Cannot open file:  '.$myFile); 
  fwrite($handle,$data);
  fclose($handle);

 ?>

我在浏览器中没有收到任何错误,并且帖子成功。我认为某些东西不起作用的唯一迹象是文件没有被写入或创建,当我访问(数据)时,我只得到一个 php 脚本字符串。我在这里做错了什么?

更新:

我将php脚本更改为此

<?php
 $data = json_decode(stripslashes($_POST['IGC']), true);
 $myFile = $_POST['filename']
 $handle = fopen('test.txt', 'w') or die('Cannot open file:  '.$myFile); 
 fwrite($handle,$data);
 fclose($handle);
 return $data;
 ?>

现在我得到了错误:

kCFErrorDomainCFNetwork 错误 1.)

如果有帮助,这是发布功能

    function genCode() {
  var path = $('#path_to_image').val();
  var index = path.length
  for (var i = 1; i<=3; i++) {
    index = path.lastIndexOf('/',index-1)
  }
  var fileToCreate = path.substring(path.lastIndexOf('/')+1,path.lastIndexOf('.'))+'.igc'
  var newFilePath = path.substring(0,path.lastIndexOf('.'))+'.igc'
  containerObj["target_container"] = $('#target_container').val();
  containerObj["img_path"] = path.substring(index+1);
  containerObj["img_dims"] = {x: w, y: h};
  containerObj["mode"] = $('#number_of_axes').val();
  containerObj["sd"] = {x1: $('#sd_x1').val(), y1: $('#sd_y1').val(), x2: $('#sd_x2').val(), y2: $('#sd_y2').val()};
  containerObj["number_of_graphs"] = $('#number_of_graphs').val();
  var show_waypoints = false;
  containerObj["show_waypoints"] = false;
  //$('#generated_textarea').val("attachGraph.addGraph(" + JSON.stringify(containerObj, null, '\t') + ");");
  var ajaxData = { IGC: JSON.stringify(containerObj), filename: newFilePath };
 /*   $.ajax({
      type: "POST",
      url: "../php/generateIGC.php",
      data: ajaxData,
      success: function() {
        $('#generated_textarea').val("File created.")
      }
      })
    })
   */ $.post( "../php/generateIGC.php", ajaxData, function(data) {
        $('#generated_textarea').val(data)
    } )
}
4

2 回答 2

3

它可以做很多事情,你应该知道你正在尝试编写的路径,并且你应该调整 PHP 的配置以显示错误,因为所有文件操作都会产生一个不会停止你的脚本的警告。

<?php
ini_set('display_errors', 1); // show errors
error_reporting(-1); // of all levels
date_default_timezone_set('UTC'); // PHP will complain about on this error level

if (!isset($_POST['IGC'])) { // Test if this was posted
    echo "IGC not defined";
    exit;
}

if (!isset($_POST['filename'])) { // Test if this was posted too
    echo "filename not defined."
    exit;
}
$data = json_decode(stripslashes($_POST['IGC']), true);
$myFile = $_POST['filename'];
$fileToWrite = 'test.txt';
if (!is_writable($fileToWrite)) { // Test if the file is writable
    echo "Cannot write to {$fileToWrite}";
    exit;
}

$handle = fopen($fileToWrite, 'w');
if (!is_resource($handle)) { // Test if PHP could open the file
    echo "Could not open {$fileToWrite} for writting."
    exit;
}

fwrite($handle,$data);
fclose($handle);
echo "File successfully created";
?>

此脚本作为您的上传 PHP 脚本应该为您提供有关问题的更好的详细信息。您唯一需要确定的是您正在编辑的文件在哪里,以及 PHP 是否有权写入该文件。

如果你没有在文件名上使用绝对路径,PHP 会尝试在脚本的目录中写入。

于 2013-10-10T20:07:23.020 回答
0

终于“解决”了这个问题。我不小心在本地运行了 html 页面,而不是通过 apache 服务器,所以 php 无法运行。此外,txt 文件没有写入权限,并且我的代码最初存在一些错误。不过都很傻。

于 2013-10-14T15:42:47.663 回答