Как прочитать локальный файл в дополнении для Firefox версии 45+
Я потратил 4 часа, пытаясь найти решение для загрузки файла в мою надстройку Firefox. Но безуспешно (((.
Код у меня есть:
const {TextDecoder, OS} = Cu.import("resource://gre/modules/osfile.jsm", {});
var decoder = new TextDecoder();
var promise = OS.File.read("C:\\test.txt");
promise = promise.then(function onSuccess(array) {
alert(decoder.decode(array));
});
Невозможно заставить приведенный выше код работать (((. Что я делаю не так?
1 ответ
Код у вас в основном работает как написано. Однако это предполагает, что alert()
определяется, и при попытке прочитать файл не было ошибок. Тем не мение, alert()
обычно не определяется, если вы не определили его где-то еще в вашем коде. Что именно является проблемой, вероятно, будет определено, если вы посмотрите в консоли браузера (Ctrl-Shift-J или Cmd-Shift-J в OSX). К сожалению, вы не включили эту информацию в вопрос.
Справочная информация:
- OSFile.jsm
- OS.File для основного потока
- OS.File.read()
- Обещание: Обработка ошибок и распространенных ошибок
Ниже приведено полное расширение SDK для Firefox, которое дважды считывает и выводит на консоль файл по адресу B:\testFile.txt
, Вывод в консоли для приведенного ниже примера текстового файла:
read-text-file:readTextFile: This is a text file line 1
Line 2
read-text-file:readUtf8File: This is a text file line 1
Line 2
index.js:
var {Cu} = require("chrome");
//Open the Browser Console (Used in testing/developmenti to monitor errors/console)
var utils = require('sdk/window/utils');
activeWin = utils.getMostRecentBrowserWindow();
activeWin.document.getElementById('menu_browserConsole').doCommand();
var buttons = require('sdk/ui/button/action');
var button = buttons.ActionButton({
id: "doAction",
label: "Do Action",
icon: "./myIcon.png",
onClick: doAction
});
//Above this line is specific to the Firefox Add-on SDK
//Below this line will also work for Overlay/XUL and bootstrap/restartless add-ons
//const Cu = Components.utils; //Uncomment this line for Overlay/XUL and bootstrap add-ons
const { TextDecoder, OS } = Cu.import("resource://gre/modules/osfile.jsm", {});
function doAction(){
var fileName = 'B:\\textFile.txt'
//Read the file and log the contents to the console.
readTextFile(fileName).then(console.log.bind(null,'readTextFile:'))
.catch(Cu.reportError);
//Do it again, using the somewhat shorter syntax for a utf-8 encoded file
readUtf8File(fileName).then(console.log.bind(null,'readUtf8File:'))
.catch(Cu.reportError);
}
function readTextFile(fileName){
var decoder = new TextDecoder();
return OS.File.read(fileName).then(array => decoder.decode(array));
}
function readUtf8File(fileName){
//Using the somewhat shorter syntax for a utf-8 encoded file
return OS.File.read(fileName, { encoding: "utf-8" }).then(text => text);
}
package.json:
{
"title": "Read a text file",
"name": "read-text-file",
"version": "0.0.1",
"description": "Reads a text file in two different ways.",
"main": "index.js",
"author": "Makyen",
"engines": {
"firefox": ">=38.0a1",
"fennec": ">=38.0a1"
},
"license": "MIT",
"keywords": [
"jetpack"
]
}
textFile.txt:
This is a text file line 1
Line 2