我有这样的代码:
dbExpress
此代码已成功下载public function downloadFile($name)
{
$storagePath = "/opt/tmp/";
// check filename for allowed chars (do not allow ../ to avoid security issue: downloading arbitrary files)
if (!is_file("$storagePath/$name")) {
throw new \yii\web\NotFoundHttpException('The file does not exists.');
}
return Yii::$app->response->sendFile("$storagePath/$name", $name);
}
,但无法指向某个页面。
所以我想,如果我按file
点击,
在button
中是保存文件,在browser
中是直接到某个页面。
有可能吗?