0
我遇到了以下用於數據綁定的小型自含聚合物示例的麻煩。簡單聚合物(0.5.4)數據綁定示例問題
我的理解是,通過讓消費者和供應商都具有數據屬性,並且傳入了表達式{{stuff}}
,這是指元素範圍內的變量「stuff」。
當供應商加載並準備就緒時,它應該填充stuff變量,導致消費者插入數據。
http://jsbin.com/yawipodayo/1/edit?html,css,js,output
<!doctype html>
<html>
<head>
<script src="../bower_components/webcomponentsjs/webcomponents.js">
</script>
<link rel="import" href="../bower_components/polymer/polymer.html">
</head>
<body>
<polymer-element name="consumer" attributes="data">
<template bind="{{data}}">{{}}</template>
</polymer-element>
<polymer-element name="supplier" attributes="data">
<template></template>
<script>
Polymer('supplier', {
ready: function(){
this.data = "test"
}
});
</script>
</polymer-element>
<polymer-element name = "root">
<template>
<supplier data="{{stuff}}"></supplier>
<consumer data="{{stuff}}"></consumer>
</template>
</polymer-element>
<root>
</root>
</body>
</html>
哦,那些向下箭頭(現在的偷)! :) – 2015-02-07 13:23:37
@JustinXL我有一個着名的箭頭™鍵盤:) – mudasobwa 2015-02-07 13:29:43
哦,我誤解了文檔,我認爲將{{data}}綁定到模板,這意味着{{}}現在引用了數據和{{data}}將引用data.data – 2015-02-07 13:37:56