0
我使用的是URL,這樣如何將圖像文件加載到JQuery中?
var imgPaht = user.get("ProfilePic");
$('<img src="' + imgPaht + '">').load(function() {
$(this).width(400).height(400).appendTo('#profile_pic');
})
現在解析檢索從解析圖像,圖像不保持作爲一個字符串,它保存爲文件。如何更改上面的行來處理文件而不是url。
我已經試過
var profilePhoto = profile.get("ProfilePic");
$("profileImg")[0].src = profilePhoto.url();
錯誤我得到
這可能是在這裏回答:http://stackoverflow.com/questions/20035615/using-raw-image-data-from-ajax-request-for-data-uri但不使用/需要jQuery,只是普通JS。 – 2014-10-30 18:06:14
當你說「文件」是它Base64作爲答案嗎?或其他? – 2014-10-30 18:31:41
@ RokoC.Buljan我檢查過,它肯定是一個對象... – Dano007 2014-10-30 20:17:38