클라이언트에서 업로드 하는것이 아니라, server에 있는 파일을 업로드 하는게 트릭이 아니면 쉽지 않다.
ajax라는 것을 사용.
parse는 여러가지 라이브러리가 많은데.
https://github.com/evanplaice/jquery-csv
을 사용
전체 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <html> <head> <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> <script src="/home/cwjang/projects/jspsych/jquery-csv-master/src/jquery.csv.js"></script> <script> function read_with_ajax(url,fun,holder){//url,function,just a placeholder holder=new XMLHttpRequest; holder.open('GET',url); holder.onload=fun; holder.send() } function alertTxt(){ //alert(this.response) data = $.csv.toArrays(this.response) //global value : data //console.log(data) alert(data) } window.onload=function(){ read_with_ajax('sample2.csv',alertTxt) } </script> </head> <body> </body> </html> | cs |
반응형
'Programming' 카테고리의 다른 글
[sql] group by 와 연산 (0) | 2019.03.28 |
---|---|
[sql] 설치 없이 연습할 수 있는 싸이트 (0) | 2019.03.28 |
check the file is used by another process or not [windows] (0) | 2014.03.13 |
MATLAB에서 socket 통신 (0) | 2014.02.27 |
matlab, nargin, nargout 주의점. (0) | 2014.01.22 |