当我使用指南针(scss)内嵌图像功能时,我发现生成的png图像的base64代码可以在PC浏览器中显示,但不能在Android手机的浏览器上显示(MOTO XT711,其他... 。)
我发现这个sass扩展函数的源代码如下:
def data(real_path)
if File.readable?(real_path)
File.open(real_path, "rb") {|io| io.read}
else
raise Compass::Error, "File not found or cannot be read: #{real_path}"
end
端
似乎编码方式错了?如何将图像编码为与android mobile兼容的base64?