我需要通过 drupal 服务/文件将图像保存到 Drupal。据我了解,我需要将文件解码为 base64 并将其作为服务/文件的有效负载发送。我怎样才能编码才能做到这一点????我想在javascript中做到这一点。
6 回答
我是@GrimurD 提到的angular-base64-upload的作者。该指令非常适合这种情况。它将图像(或任何其他文件类型)解析为 base64 编码并将文件信息附加到您范围内的模型。
示例用法:
<input type='file' ng-model='yourModel' base-sixty-four-input>
选择文件后,yourModel
其值将类似于:
{
"filetype": "text/plain",
"filename": "textfile.txt",
"base64": "/asdjfo4sa]f57as]fd42sdf354asdf2as35fd4"
}
它还包含使用 PHP 或 ruby 对服务器中的 base64 文件进行解码的示例代码。
我知道它已经很老了,但我来这里是为了解决问题。
最后我发现(如果你不想使用外部库)在 base 64 中加载图像就像使用 javascript FileReader.readAsDataURL()
希望我的最终代码能帮助像我这样的其他初学者。它的特点:
它也在codepen上
angular.module('starter', [])
.controller('Ctrl', function($scope) {
$scope.data = {}; //init variable
$scope.click = function() { //default function, to be override if browser supports input type='file'
$scope.data.alert = "Your browser doesn't support HTML5 input type='File'"
}
var fileSelect = document.createElement('input'); //input it's not displayed in html, I want to trigger it form other elements
fileSelect.type = 'file';
if (fileSelect.disabled) { //check if browser support input type='file' and stop execution of controller
return;
}
$scope.click = function() { //activate function to begin input file on click
fileSelect.click();
}
fileSelect.onchange = function() { //set callback to action after choosing file
var f = fileSelect.files[0],
r = new FileReader();
r.onloadend = function(e) { //callback after files finish loading
$scope.data.b64 = e.target.result;
$scope.$apply();
console.log($scope.data.b64.replace(/^data:image\/(png|jpg);base64,/, "")); //replace regex if you want to rip off the base 64 "header"
//here you can send data over your server as desired
}
r.readAsDataURL(f); //once defined all callbacks, begin reading the file
};
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.20/angular.min.js"></script>
<body ng-app='starter' ng-controller='Ctrl'>
<button ng-click='click()'>click to select and get base64</button>
<br>BASE 64 data:
<br>
<span style='color: red'>{{data.alert}}</span>
<div style='word-wrap:break-word'>
{{data.b64}}
</div>
</body>
我建议您使用https://github.com/ninjatronic/angular-base64。
遵循使用此库的说明后,您可以简单地调用:
var imageData=$base64.encode(image);
不要忘记注入你的模块:
.module('myApp', ['base64'])
我发现了一些网站,像 chrome 之类的浏览器,ie10 ..可能支持这个 https://developer.mozilla.org/en-US/docs/Web/API/FileReader?redirectlocale=en-US&redirectslug=DOM%2FFileReader
你不需要 AngularJs。这里有一个线程解释如何使用 Javascript 和画布进行操作:How to convert image into base64 string using javascript
我遇到了同样的问题,并在 github 上遇到了这个存储库。试了一下,效果很好。