我正在使用polymer-jsonp來執行JSONP請求,但響應有時包含html。如何將HTML注入到聚合物模板中
例如,假設post.content爲"<strong>Foo</strong> bar"
,如何顯示{{post.content}},使"Foo"
爲粗體?
<polymer-element name="feed-element" attributes="">
<template>
<template repeat="{{post in posts.feed.entry}}">
<p>{{post.content}}</p>
</template>
<polymer-jsonp url="url" response="{{posts}}"></polymer-jsonp>
</template>
<script>
Polymer('feed-element', {
created: function() { },
attached: function() { },
detached: function() { },
attributeChanged: function(attrName, oldVal, newVal) { }
});
</script>
</polymer-element>
你可以很容易做到:
> http://stackoverflow.com/questions/30678307/polymer-1-0-how-to-bind-html-value(彼得)使用Flickr的API JSONP斯科特的技術 –