所以我部署了一个 Next.js 站点,并且在 Todos 页面 (https://learn-next-js-alpha.vercel.app/todos) 中,我使用 getServerSideProps 调用 api 数据并且它工作正常。但即使我使用 getStaticProps 它也能工作。那么区别是什么呢?当一个人访问这个站点并加载这些数据时,它是否像 getStaticProps 和 getServerSideProps 一样运行? 另外当一个人点击刷新页面按钮时,调用哪个方法,getStaticsProps 还是 getServerSideProps?