未捕获 NOT_FOUND_ERR:NOT_FOUND_ERR:使用 plupload 时 Ember 中的 DOMException 8

Uncaught NOT_FOUND_ERR: NOT_FOUND_ERR: DOMException 8 in Ember while using plupload

在 ember 中使用 plupload 组件时,它似乎在控制台上出错,而​​且 plupload 也不工作

Instantiating FileInput...

moxie.js:3027Uncaught NOT_FOUND_ERR: NOT_FOUND_ERR: DOMException 8

我提到了 this link

提前致谢

需要具有 id "upload-image" 的元素来匹配上传者的 for属性

{{#pl-uploader for="upload-image" extensions="jpg jpeg" onfileadd="uploadImage" as |queue|}}
  {{#if queue.length}}
    Uploading...{{queue.progress}}%
    </span>
  {{else}}
    <a id="upload-image">Add an Image.</a>**strong text**
  {{/if}}
{{/pl-uploader}}