Iron Router查询数组 是一个 Iron Router 的插件包,能够轻松控制查询字符串数组。安装方法:

meteor add dburles:iron-router-query-array

接口示例:

  • add(name, value)

Router.query.add('bar', 1);

// 生成 http://example.com/?foo[]=1

Router.query.add('bar', 2);

// 生成 http://example.com/?foo[]=1&foo[]=2

  • remove(name, value)

Router.query.remove('bar', 1);

// 生成 http://example.com/?foo[]=2

  • isSet(name, value)

Router.query.isSet('bar', 2);