0
皆さんは、私のリアクションサイトでリアクションガードを使用するためにドキュメントをフォローしようとしています。私はReact Routerを使用しています。v 4. Googleアナリティクスで、それが見つからない、有効なトラッキングコードがないとのエラーが表示され続けますが、トラッキングIDを使用しています。たぶん、私が欠けている必要があるパズルの部分がありますか?以下は、ここに私のindex.js https://www.npmjs.com/package/react-gaリアクタールータv4 Googleアナリティクスリアクションガー
import React from 'react';
import ReactDOM from 'react-dom';
import {BrowserRouter, Switch, Route} from "react-router-dom";
import './index.css';
import Home from './containers/home.js'
import AllExplore from './containers/allexplore.js';
import Explore from './containers/explore.js';
let ReactGA = require('react-ga');
ReactGA.initialize('UA-MYIDNUMBER-1');
function logPageView() {
ReactGA.set({ page: window.location.pathname +
window.location.search });
ReactGA.pageview(window.location.pathname + window.location.search);
}
class App extends React.Component{
render(){
return(
<BrowserRouter onUpdate={logPageView}>
<Switch>
<Route exact path="/" component={Home}/>
<Route exact path="/allexplore" component={AllExplore} />
</Switch>
</BrowserRouter>
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));