5
Issue: Error: FileConstructor is not a constructor (evaluating 'new File([blob], "filename.png")')AngularjsのFileConstructorはコンストラクタではありません。 '
この質問はAlternative for File() constructor for safariでしたが、見てみる価値はありませんでした。
IOSのIonic Frameworkを使用してこれを回避する方法はありますか? Javascriptを
= Base64のイメージ
。
var blob = new Blob([a], {type: 'image/png'});
console.log(blob);
$scope.Issue14 = blob;
var nfile = new File([blob], "filename.png");
console.log(nfile);
$scope.Issue15 = nfile;
var _file = nfile;
console.log(_file);
$scope.Issue16 = _file;
$scope.Images.push({"img": _file});