所以我试图创建一个允许我通过URL将数据传递给动态函数的路由器。
我可以获得一个函数来触发一个像这样的路径 -
public class A<T> {
public void main(String[] args) {
A<String>[] array = new A<String>[10];
System.out.println(array.length);
}
}
但是如何动态触发路线?
由于
答案 0 :(得分:0)
与Director非常简单。使用:param
语法:
const router = new Router({
"/intro": () => {
store.showIntro()
},
"/api/:stringParam": (stringParam) => store.doSomething(stringParam),
}).configure({ ... }).init()
然后可以动态传递stringParam
,例如
www.website.com/api/thing
以下是导演文档的链接: https://github.com/flatiron/director#url-parameters