我尝试使用 PHP 在 .txt 文件中写入一些数据,以便可以在我的 SAPUI5 应用程序中创建包含以下内容的文件“writeData.php”:
<?php
$inhalt = "123456789";
$handle = fopen ("testWrite.txt", w);
fwrite ($handle, $inhalt);
fclose ($handle);
?>
然后我尝试使用以下 Ajax 请求调用此文件:
writeStringToWhitelist: function(newContent){
$.ajax({
url: "writeData.php",
type: "GET",
data: newContent,
async: false,
success: function(){
console.log("Success");
}
});
}
我知道肯定有一些错误,但我希望有人能帮助我!
致谢