无法缓存,返回码一直是200
public function behaviors()
{
return [
//使用http缓存
[
'class'=>'yii\filters\HttpCache',
'lastModified'=>function(){
//这是一个时间戳
//只要时间戳一致,那么就可以认为缓存一致,响应一致
return 1432817566;
}
]
];
}
public function actionIndex()
{
//echo "4";
return $this->renderPartial('index');
}