method file.getAsBinary works fine in Firefox3.6, but not Firefox8
I use javascript method file.getAsBinary for file uploading. It works fine in firefox3.6, but it doesn't work in firefox8. Does anybody know how to solve this or any method to replace file.getAsBinary in firefox8?
I use javascript method file.getAsBinary for file uploading. It works fine in firefox3.6, but it doesn't work in firefox8.
Does anybody know how to solve this or any method to replace file.getAsBinary in firefox8?
被采纳的解决方案
That method was removed, as per this Bugzilla page: 661876 – Kill obsolete nsIDOMFile properties/methods. Apparently the FileReader (link to MDN) object is the new recommended way to read a file.
定位到答案原位置 👍 2所有回复 (2)
选择的解决方案
That method was removed, as per this Bugzilla page: 661876 – Kill obsolete nsIDOMFile properties/methods. Apparently the FileReader (link to MDN) object is the new recommended way to read a file.
Thanks!