简体   繁体   中英

Phonejs route param with array

Recently, I use phonejs to develop a new project.

And I want to transfer parameters in different view, I know it can define the route like:

AppNamespace.app.router.register(":view/:personId/", { view: "view_home",personId:'' });

However, when I want transfer an array in different views, it seems not so realizable. What is the best way to transfer an array in different view?

Can anybody help? Thx : )

You can set the array to the app namespace and access it on any view...

AppNamespace.MyArray = [Whatever...]

This will be accessible anywhere via AppNamespace.Myarray

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM