hxsam
hxsam
我找不到用浏览器直接显示ppt的例子,只有一个树: samples/Sample_12_Reader_PowerPoint2007.php。 $oPHPPresentation = $pptReader->load('resources/Sample_12.ppt'); //有没有方法在web浏览器里直接显示 完整的ppt文件,而不是tree $oTree = new PhpPptTree($oPHPPresentation); echo $oTree->display(); 当我访问 http://phppresentation.readthedocs.org/en/develop/ 报错:不存在!
我也一样. src\components\unauth.vue line30:const authURL = `https://github.com/login/oauth/authorize?client_id=${import.meta.env.VITE_GITSTARS_CLIENT_ID}&redirect_uri=${location.origin}&scope=public_repo`; 已经不适合现在的认证路径了,这个改成: const authURL = `https://github.com/login/oauth/authorize?client_id=${import.meta.env.VITE_GITSTARS_CLIENT_ID}&redirect=${location.origin}&scope=public_repo`; 这样能打开github.com认证页面了。 结果认证回来后,程序一直转圈圈,不能处理github认证回来的响应。 查看 vite.config.js line 35 ,config.server 里面的target: envLocal.**VITE_API_PROXY**。 这个**VITE_API_PROXY**是什么鬼,只出现在代码里,什么都没说这个值是什么。