Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <!-- >* wxml: 重复渲染该`view组件` -->
  2. <!-- >``` -->
  3. ><!--wxml-->
  4. <view wx:for="{{array}}"> {{item}} </view>
  5. <!-- >``` -->
  6. <!-- >* page.js -->
  7. <!-- >``` -->
  8. <!-- >// page.js -->
  9. Page({
  10. data: {
  11. array: [1, 2, 3, 4, 5]
  12. }
  13. })
  14. <!-- >``` -->
Add Comment
Please, Sign In to add comment