我试图在Windows计算机上运行Ruby(不要问......)。当我输入' irb'我收到了:
$ ruby -v
ruby 2.2.4p230 (2015-12-16 revision 53155) [i386-mingw32]
目前我的HOME变量设置为%USERPROFILE%
我不知道这是否有用
(function () {
'use strict';
angular
.module('app.cobie.export')
.service('CobieExportDataService', ['Restangular', 'FileSaver', 'Blob',
function (Restangular, FileSaver, Blob) {
this.exportToCobie = function (projectId) {
toastr.info('Exporting COBie data', 'Info');
return Restangular.withConfig(function(RestangularConfigurer) {
RestangularConfigurer.setDefaultHttpFields({
cache : false ,
responseType: "arraybuffer",
});
}).one("export/" + projectId).get().then(function (res) {
var data = new Blob([res], { type: 'application/vnd.ms-excel' });
FileSaver.saveAs(data, 'export.xls');
})
}
}]);
})();
如果我应该如何设置这一点,请告诉我。谢谢!