1
我想創建與谷歌聚合物的platform.js一個很簡單的例子,但我得到了以下錯誤:Uncaught TypeError: Cannot read property '_polyfilled' of undefined
使用Google聚合平臺時未定義_polyfilled?
這裏就是我想要做:
<current-date></current-date>
<script>
document.registerElement('current-date', {
prototype: {
createdCallback: function() {
this.innerHTML = new Date();
}
}
});
</script>
http://jsbin.com/uwUxeYA/1/edit
請注意,如果沒有platform.js加載,此代碼在Google Canary中完美工作。我是否在其他瀏覽器(最新的Chrome,Firefox等)上錯誤地使用了polyfill?
謝謝你的工作!並感謝文章! :) – TruMan1