小程序基础学习(wxs)

小程序基础学习(wxs)_第1张图片




function formatPrice(price){
  return "$" + price
}
module.exports={
  formatPrice:formatPrice
}


  
  
    name:{{item.name}}  ----price{{format.formatPrice(item.price)}}
  
    
  
data: {
    book:[
      {
        "id":123,
        "name":"牛马程序员",
        "price":100
      },
      {
        "id":1234,
        "name":"牛马程序员4",
        "price":1004
      },
      {
        "id":1235,
        "name":"牛马程序员5",
        "price":1005
      },
      {
        "id":1236,
        "name":"牛马程序员6",
        "price":1006
      },
  ]

  },

第二张方案吧wxs导出到外部文件

function formatPrice(price){
  return "$" + price
}
module.exports={
  formatPrice:formatPrice
}

再导入外部文件路径即可



你可能感兴趣的:(人工智能)