2017-07-08 90 views
0

我們如何從項目文件路徑中將文本文件的內容複製到JavaScript中的字符串變量。Javascript:從項目文件夾中讀取文本文件到字符串

我使用下面的代碼,但它給出了「訪問被拒絕」錯誤。

var sHTML = ""; 
var rawFile = new XMLHttpRequest(); 
rawFile.open("GET", "file://~/Templates/NewGridTemplate.txt", true); 
     sHTML = rawFile.responseText; 
+0

這可能有助於https://stackoverflow.com/questions/13709482/how-to - 讀取文本文件,在JavaScript的 – xxLITxx

回答

0

閱讀C#代碼的HTML模板,然後將它發送給你的HTML代碼,並分配給innerHTML的

using (StreamReader sr = new StreamReader(@"D:\Template.html")){ 
    // Read the stream to a string, and write the string to the console. 
    obj.svar = sr.ReadToEnd().Replace(Environment.NewLine, " "); 
    //Console.WriteLine(line); 
    } 
相關問題