我正在寻找访问属于正在运行的扩展的目录的规范方法。目前我有这个kludge。它允许我访问与 main.js 位于同一目录中的 .json。
var support_dir = brackets.app.getApplicationSupportDirectory(),
precursor_path,
precursor_file = "package.json"; // where this represents some config file.
support_dir += "/extensions/user/zeffii.precursor/";
precursor_path = support_dir + precursor_file;
var prototypes;
$.getJSON(precursor_path, function (data) {
prototypes = data;
});