简短问题:是否可以在普通的html网站上使用聚合物表达式?这样我就可以在某处编写{{ 1+ 1 }}
并将其评估为2。
答案 0 :(得分:4)
如果你的意思是"没有包含任何聚合物",那么简短的回答就是" no"。否则,这是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>