背景:
前端通过react渲染页面,使用了react-slingshot,相当于是前端跑在一个node服务上面
需求:
需要通过客户端通过HTTP请求传递来的参数(header里放了token)进行用户权限的验证,比如访问
http://localhost:3000/rights/1,我需要拿到header中的token去验证用户是否登录,从而进行不同的渲染
问题:
如何通过每一次的路由获得http请求的头信息?或者在每次渲染组件时获得请求的信息?
代码:
html
index.js
import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import configureStore from './store/configureStore';
import { Router, browserHistory } from 'react-router';
import { syncHistoryWithStore } from 'react-router-redux';
import routes from './routes';
const store = configureStore();
const history = syncHistoryWithStore(browserHistory, store);
render(
, document.getElementById('app')
);
Router
export default (
);