我正在使用PrimeNG Angular模块,它在屏幕底部显示记录数。
// C.h
#include "internal/T.h"
namespace foo {
class C {
public:
using T = internal::T;
// ...
};
}
// internal/T.h
namespace foo { namespace internal {
using T = std::string;
}}
但是,当我过滤数据时,该数字不会改变。
如何“自动更新”数字?