Home > Article > WeChat Applet > How to determine which page to jump to in wx:for in WeChat mini program
//wx: for loop options
//js
page({
data:{
functions: [
{
"name": "Inventory",
"pic_url": '. ./image/half-star.png',
},
{
"name": "Report",
"pic_url": '../image/half-star.png'
},
{
"name": "Product Management",
"pic_url ": '../image/half-star.png'
},
{
"name": "Order",
" pic_url": '../image/half-star.png'
},
{
"name": "Airline ticket",
"pic_url": '../image/half-star.png'
},
{
"name": "train ticket",
"pic_url": '../image/half-star.png'
},
{
"name": "Mobile Recharge",
"pic_url": '../image/half-star.png'
},
{
"name": "Water, Electricity and Coal" ,
"pic_url": '../image/half-star.png'
}
]
},
}
})
The above is the detailed content of How to determine which page to jump to in wx:for in WeChat mini program. For more information, please follow other related articles on the PHP Chinese website!