Skip to content

douban-movie v1.2

Compare
Choose a tag to compare
@xingbofeng xingbofeng released this 08 May 03:15
· 10 commits to master since this release

Our douban-movie-app released v1.2!
🚀 New

  • Add user's comments, star others' comments!
  • Add apikey, so that you can access this application without the limit of douban api,which is 40 times/minute.

🐛 Fixed

app.get('/*', (req, res) => {
  res.sendFile(`${__dirname}/index.html`);
});
  • #2 @ZebraSu, fix cant work on my windows System bug ! Use yarn to build this application!

  • Fix NET_STATUS bug ! when NET ERROR happend, can't return HomePage ! Now We can ! See src/router/index.js

router.beforeEach((to, from, next) => {
  store.commit(types.NET_STATUS, '');
  next();
});