KnpPaginatorBundle 以整数形式返回 currentPageNumber

Posted

技术标签:

【中文标题】KnpPaginatorBundle 以整数形式返回 currentPageNumber【英文标题】:KnpPaginatorBundle return currentPageNumber as integer 【发布时间】:2016-11-16 09:04:01 【问题描述】:

我在我的 Symfony2 项目中使用 KnpPaginatorBundle。每次我请求特定页面的结果时,结果返回给我看起来像:


  "currentPageNumber": "2",
  "numItemsPerPage": 5,
  "items": [ ...
   ]

如您所见,currentPageNumber 在这里是字符串。如何将此属性的类型更改为整数?

【问题讨论】:

【参考方案1】:

您可以在 php 中使用标准类型转换 (documentation)

对于示例,您可以这样做:

$intValue = (int) "123";

看看这个案例:

$stringValue = "123";
echo gettype($stringValue); // will be 'string' here

$intFromStringValue = (int) $stringValue;
echo gettype($intFromStringValue); // will be 'integer' here

// but be aware of this
echo (int) "Some words"; // will be integer but value will be 0, because type casting cannot get the number from string
echo (int) "200 and some words"; // integer 200
echo (int) "Some words and 300"; // integer 0

【讨论】:

以上是关于KnpPaginatorBundle 以整数形式返回 currentPageNumber的主要内容,如果未能解决你的问题,请参考以下文章

使用 KnpPaginatorBundle 在 symfony 4 中进行分页

KnpPaginatorBundle:排序分页表(由搜索表单参数生成)

使用 KnpPaginatorBundle 创建和检索可排序的选项列表

KNPPaginatorBundle 第一页上的特色结果

在没有 Internet 连接的情况下手动配置 KnpPaginatorBundle

ajax查询后如何更新knppaginatorbundle的分页模板