离子从图片导航

时间:2018-09-13 09:16:17

标签: html css json typescript ionic-framework

我的应用程序中有一个部分可从JSON文件加载数据并在网格中显示图片。

JSON数据示例:

"categories": [
    {
        "title": "Test",
        "image": "./assets/images/listing/200x200basquet.png",
        "page": "TestPage"
    },

现在,当您单击其中一张图像时,它具有一种功能,它可以将您导航到一页,而不是每张图像的不同页面。

goToFeed(category: any) {
    console.log("Clicked goToFeed", category);
    this.nav.push(FeedPage, {
        category: category
    });
}

有人对如何重新编写该功能以特定地导航到与图像相关的页面有想法吗?

谢谢

0 个答案:

没有答案