我最近重新安装了nativescript并尝试使用select customer
from your_table
group by customer
having count(distinct case
when product# in (11, 13)
then product#
end) = 2
and count(case
when product# in (1, 5)
then 1
end) > 0
并且在触摸链接时没有发生任何事情。与路由器模块结合使用[nsRouterLink]="['/someDestination']"
可以得到我想要的结果。我更愿意理解在实现(tap)="some function()"
语法时我忘记了什么。有什么建议吗?
答案 0 :(得分:0)
好吧,我的错误了。
我一直在将NativescriptRouterModule导入一个单独的文件,并认为当我导出路由列表并将它们导入到我的主模块时,整个模块就足够了。但是将NativescriptRouterModule导入主模块可以直接修复所有内容。这里没有错,只是用户错误。