可以在聚合中为提要使用自定义变量吗?
当我推动我的活动时,我推动以下
$data = [
'actor' => '1',
'verb' => "$verb",
'object' => "$objectType:$objectId",
'target' => "$targetObjectType:$targetObjectId",
'time' => "$time",
'foreign_id' => "$foreignId",
// Custom field
'object_type' => $objectType
];
它在编辑聚合提要时提到:
The following variables are
available to you: verb, time, object, target, id, actor.
我想要一个自定义变量的原因是我想按VERB TARGET 和 OBJECT(TYPE)进行聚合。这样我就可以显示诸如10 points were added to your item of id 1
. 如果我们也使用 id,object=point:1
那么我们不能在聚合中使用它,因为每个点的 id 都不同,因此永远不会聚合。
我刚刚尝试在聚合中使用自定义变量,它似乎可用并且有效。这样做有什么不对吗?