与if模板一起使用的纸张输入

时间:2015-07-10 17:03:27

标签: javascript polymer web-component polymer-1.0

我想要显示一些内容FileNotFoundException in Filesystem.php line 428: File not found at path: http:/localhost:8000/uploads/slides/abcd.jpg 用户检查if

我以为我曾经(在1.0之前)能够按照

的方式做点什么
paper-checkbox

但这似乎并没有起作用。

1 个答案:

答案 0 :(得分:3)

自动绑定和条件模板具有changed in Polymer v1.0+

  • 自动绑定模板现在使用is="dom-bind"
  • 条件模板现在使用is="dom-if"以及if属性。
<template is="dom-bind">
  <paper-checkbox checked="{{isChecked}}"></paper-checkbox>
  <template is="dom-if" if="{{isChecked}}">
    Conditional content
  </template>
</template>