我想上传一个csv文件并处理该文件中的数据。这样做的最佳方法是什么?我不喜欢使用PHP脚本。我做了以下步骤。但是这个方法只返回文件名而不是文件路径。所以我没有得到所需的输出。
<form id='importPfForm'>
<input type='file' name='datafile' size='20'>
<input type='button' value='IMPORT' onclick='importPortfolioFunction()'/>
</form>
function importPortfolioFunction( arg ) {
var f = document.getElementById( 'importPfForm' );
var fileName= f.datafile.value;
}
那么如何才能获取该文件中的数据呢?
答案 0 :(得分:38)
以下示例基于html5rocks解决方案。它使用浏览器的FileReader()函数。仅限较新的浏览器。
请参阅http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-reading-files
在此示例中,用户选择HTML文件。它已上传到<textarea>
。
<form enctype="multipart/form-data">
<input id="upload" type=file accept="text/html" name="files[]" size=30>
</form>
<textarea class="form-control" rows=35 cols=120 id="ms_word_filtered_html"></textarea>
<script>
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// use the 1st file from the list
f = files[0];
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
jQuery( '#ms_word_filtered_html' ).val( e.target.result );
};
})(f);
// Read in the image file as a data URL.
reader.readAsText(f);
}
document.getElementById('upload').addEventListener('change', handleFileSelect, false);
</script>
答案 1 :(得分:16)
您可以使用新的HTML 5文件api来读取文件内容
https://developer.mozilla.org/en-US/docs/Using_files_from_web_applications
但这不适用于每个浏览器,因此您可能需要服务器端回退。
答案 2 :(得分:0)
以下示例显示了FileReader
读取上传文件内容的基本用法。 Here is a working Plunker of this example.
<!DOCTYPE html>
<html>
<head>
<script src="script.js"></script>
</head>
<body onload="init()">
<input id="fileInput" type="file" name="file" />
<pre id="fileContent"></pre>
</body>
</html>
script.js
function init(){
document.getElementById('fileInput').addEventListener('change', handleFileSelect, false);
}
function handleFileSelect(event){
const reader = new FileReader()
reader.onload = handleFileLoad;
reader.readAsText(event.target.files[0])
}
function handleFileLoad(event){
console.log(event);
document.getElementById('fileContent').textContent = event.target.result;
}
答案 3 :(得分:0)
试试这个
document.getElementById('myfile').addEventListener('change', function() {
var GetFile = new FileReader();
GetFile .onload=function(){
// DO Somthing
document.getElementById('output').value= GetFile.result;
}
GetFile.readAsText(this.files[0]);
})
<input type="file" id="myfile">
<textarea id="output" rows="4" cols="50"></textarea>
答案 4 :(得分:0)
blob 本身存在一些新工具,您可以使用它们来读取文件内容,作为保证您不必使用旧的 FileReader
// What you need to listen for on the file input
function fileInputChange (evt) {
for (let file of evt.target.files) {
read(file)
}
}
async function read(file) {
// Read the file as text
console.log(await file.text())
// Read the file as ArrayBuffer to handle binary data
console.log(new Uint8Array(await file.arrayBuffer()))
// Abuse response to read json data
console.log(await new Response(file).json())
// Read large data chunk by chunk
console.log(file.stream())
}
read(new File(['{"data": "abc"}'], 'sample.json'))
答案 5 :(得分:-1)
FileReaderJS可以为您读取文件。您可以在onLoad(e)
事件处理程序中将文件内容作为e.target.result
。