1
簡短的問題:是否可以在普通的html網站上使用聚合物表達式?因此,我可以在某處寫{{ 1+ 1 }}
,它的評估結果爲2.在主要的html網站上使用聚合物表達式
簡短的問題:是否可以在普通的html網站上使用聚合物表達式?因此,我可以在某處寫{{ 1+ 1 }}
,它的評估結果爲2.在主要的html網站上使用聚合物表達式
如果你的意思是「沒有包括任何聚合物」,那麼簡短答案將是「否」。否則,以下是using a polymer expression outside of a polymer element的示例:
<!doctype html>
<html>
<head>
<script src="/components/platform/platform.js"></script>
<link href="/components/polymer/polymer.html" rel="import">
</head>
<body unresolved>
<template is="auto-binding">
1 + 1 is {{1+1}}
</template>
</body>
</html>