فهرست منبع

1.修改request,从本地获取uid
2.修改splash

zhangmengjie 5 سال پیش
والد
کامیت
733b016715
2فایلهای تغییر یافته به همراه144 افزوده شده و 164 حذف شده
  1. 67 76
      pages/Splash.js
  2. 77 88
      pages/utils/request.js

+ 67 - 76
pages/Splash.js

@@ -1,84 +1,75 @@
-import React, { PureComponent } from "react";
-import {
-  StyleSheet,
-  Text,
-  View,
-  Image,
-  TouchableOpacity,
-  StatusBar,
-  ToastAndroid,
-  TextInput
-} from "react-native";
-import BasePage from "./BasePage";
-import SplashScreen from "react-native-splash-screen";
-import commonutil from "./utils/commonutil";
+import React, { PureComponent } from 'react';
+import { StyleSheet, Text, View, Image, TouchableOpacity, StatusBar, ToastAndroid, TextInput } from 'react-native';
+import BasePage from './BasePage';
+import SplashScreen from 'react-native-splash-screen';
+import commonutil from './utils/commonutil';
 export default class Splash extends BasePage {
-  state = {
-    exist: false,
-    MainPageParams: ""
-  };
-  render() {
-    return (
-      <View style={{ flex: 1 }}>
-        <StatusBar backgroundColor={"transparent"} translucent={true} />
-        <View style={{ flex: 1 }} />
-        <View style={{ flex: 5 }}>
-          <Text style={{ fontSize: 30 }}>模拟活动广告。。。。</Text>
-        </View>
-      </View>
-    );
-  }
+	state = {
+		exist: false,
+		MainPageParams: ''
+	};
+	render() {
+		return (
+			<View style={{ flex: 1 }}>
+				<StatusBar backgroundColor={'transparent'} translucent={true} />
+				<View style={{ flex: 1 }} />
+				<View style={{ flex: 5 }}>
+					<Text style={{ fontSize: 30 }}>模拟活动广告。。。。</Text>
+				</View>
+			</View>
+		);
+	}
 
-  componentWillMount() {
-    // global.storage.remove({ key: 'userInfo' });
-    this.getUserInfo();
-  }
+	componentWillMount() {
+		// global.storage.remove({ key: 'userInfo' });
+		this.getUserInfo();
+	}
 
-  componentDidMount() {}
+	componentDidMount() {}
 
-  async getUserInfo() {
-    //判断是否有用户
-    await global.storage
-      .load({
-        key: "userInfo"
-      })
-      .then(result => {
-     
-        var usermap = commonutil.jsonToMap(result);
-        this.setState({
-          exist: true,
-          MainPageParams: usermap.get("ageGroup")
-        });
-      })
-      .catch(err => {
-        console.log(err.message);
-        switch (err.name) {
-          case "NotFoundError":
-            // TODO;
-            // alert('NotFoundError');
-            this.setState({
-              exist: false
+	async getUserInfo() {
+		//判断是否有用户
+		await global.storage
+			.load({
+				key: 'userInfo'
+			})
+			.then((result) => {
+				var usermap = commonutil.jsonToMap(result);
+				this.setState({
+					exist: true,
+					MainPageParams: usermap.get('ageGroup')
+				});
+				this.Advertisement();
+			})
+			.catch((err) => {
+				console.log(err.message);
+				switch (err.name) {
+					case 'NotFoundError':
+						// TODO;
+						// alert('NotFoundError');
+						this.setState({
+							exist: false
 						});
 						SplashScreen.hide();
-            this.Advertisement();
-            break;
-          case "ExpiredError":
-            // TODO
-            // alert('ExpiredError');
-            break;
-        }
-      });
-  }
+						this.Advertisement();
+						break;
+					case 'ExpiredError':
+						// TODO
+						// alert('ExpiredError');
+						break;
+				}
+			});
+	}
 
-  //获取用户之后的操作,或者是别的操作。
-  Advertisement() {
-    //假装3秒广告
-    setTimeout(() => {
-      if (this.state.exist) {
-        this.clearPageToNext("MainPage");
-      } else {
-        this.clearPageToNext("Login");
-      }
-    }, 3000);
-  }
+	//获取用户之后的操作,或者是别的操作。
+	Advertisement() {
+		//假装3秒广告
+		setTimeout(() => {
+			if (this.state.exist) {
+				this.clearPageToNext('MainPage');
+			} else {
+				this.clearPageToNext('Login');
+			}
+		}, 3000);
+	}
 }

+ 77 - 88
pages/utils/request.js

@@ -2,42 +2,42 @@
  * 检查HTTP请求状态
  */
 function checkStatus(response) {
-  console.log("res1", response);
-  if (response.status >= 200 && response.status < 300) {
-    return response;
-  }
-  const error = new Error(response.statusText);
-  error.response = response;
-  throw error;
+	console.log('res1', response);
+	if (response.status >= 200 && response.status < 300) {
+		return response;
+	}
+	const error = new Error(response.statusText);
+	error.response = response;
+	throw error;
 }
 
 /**
  * 将Response内容转为JSON格式
  */
 function parseJSON(response) {
-  return response.json();
+	return response.json();
 }
 
 /**
  * 统一拦截接口返回数据的状态,提示错误消息
  */
 function checkAPIDatas(data) {
-  console.log("data", data);
-  if (!data.success) {
-    const code = data;
-  }
-  return data;
+	console.log('data', data);
+	if (!data.success) {
+		const code = data;
+	}
+	return data;
 }
 
 function checkAPIError(err) {
-  console.log("err", err);
-  // const code = err.response.code;
-  // const status = err.response.status;
-  // const { url, type, oStatus, statusText } = err.response;
-  // Message.error(`地址:${url} 类型:${type} 状态:${oStatus} 信息:${statusText}`, 10);
-  return {
-    err
-  };
+	console.log('err', err);
+	// const code = err.response.code;
+	// const status = err.response.status;
+	// const { url, type, oStatus, statusText } = err.response;
+	// Message.error(`地址:${url} 类型:${type} 状态:${oStatus} 信息:${statusText}`, 10);
+	return {
+		err
+	};
 }
 
 /**
@@ -48,72 +48,61 @@ function checkAPIError(err) {
  */
 
 const request = async (url, options) => {
-  // global.storage.save({
-  //     key:'token',
-  //     data: '123123123123',
-  //     expires: null
-  // });
-  if (options) {
-    const method = options.method.toUpperCase();
-    // switch(method){
-    //     case 'POST':
-    //             options.headers = {
-    //                 'Accept': 'application/json',
-    //                 'Content-Type': '"Content-Type": "application/json',
-    //                 "uid": 'c2e13090a563447c8744a8c03171d1db',
-    //                 'token': await storage.load({
-    //                     key: 'token'
-    //                 })
-    //             };
-    //         break;
-    //     case 'PUT':
-    //             options.headers = {
-    //                 'Accept': 'application/json',
-    //                 'Content-Type': 'application/x-www-form-urlencoded',
-    //                 "uid": 'c2e13090a563447c8744a8c03171d1db',
-    //                 // 'token': await storage.load({
-    //                 //     key: 'token'
-    //                 // })
-    //             };
-    //         break;
-    //         default:
-    //                 options.headers = {
-    //                     'token': await storage.load({
-    //                         key: 'token'
-    //                     })
-    //                 };
-    //             break;
-    // // }
-    // const token = await storage.load({
-    //     key: 'token'
-    // });
-    options.headers = {
-      Accept: "application/json",
-      "Content-Type": "application/json",
-      uid: "c2e13090a563447c8744a8c03171d1db"
-      // 'token': token?  token : null
-    };
-    if (
-      method === "POST" ||
-      method === "PATCH" ||
-      method === "DELETE" ||
-      method === "PUT"
-    ) {
-      options.body = JSON.stringify(options.body);
-    } 
-    // else {
-    //   options.headers = {
-    //     // token: await storage.load({
-    //     //   key: "token"
-    //     // })
-    //   };
-    // }
-  }
-  console.log("options", options);
-  return fetch(url, options)
-    .then(checkStatus)
-    .then(parseJSON)
-    .then(checkAPIDatas)
-    .catch(checkAPIError);
+	const userinfo = await storage.load({
+		key: 'userInfo'
+	});
+	if (options) {
+		const method = options.method.toUpperCase();
+		// switch(method){
+		//     case 'POST':
+		//             options.headers = {
+		//                 'Accept': 'application/json',
+		//                 'Content-Type': '"Content-Type": "application/json',
+		//                 "uid": 'c2e13090a563447c8744a8c03171d1db',
+		//                 'token': await storage.load({
+		//                     key: 'token'
+		//                 })
+		//             };
+		//         break;
+		//     case 'PUT':
+		//             options.headers = {
+		//                 'Accept': 'application/json',
+		//                 'Content-Type': 'application/x-www-form-urlencoded',
+		//                 "uid": 'c2e13090a563447c8744a8c03171d1db',
+		//                 // 'token': await storage.load({
+		//                 //     key: 'token'
+		//                 // })
+		//             };
+		//         break;
+		//         default:
+		//                 options.headers = {
+		//                     'token': await storage.load({
+		//                         key: 'token'
+		//                     })
+		//                 };
+		//             break;
+		// // }
+		// const token = await storage.load({
+		//     key: 'token'
+		// });
+		options.headers = {
+			Accept: 'application/json',
+			'Content-Type': 'application/json',
+			uid: JSON.parse(userinfo).uid
+			// 'token': token?  token : null
+		};
+		if (method === 'POST' || method === 'PATCH' || method === 'DELETE' || method === 'PUT') {
+			options.body = JSON.stringify(options.body);
+		}
+		// else {
+		//   options.headers = {
+		//     // token: await storage.load({
+		//     //   key: "token"
+		//     // })
+		//   };
+		// }
+	}
+	console.log('options', options);
+	return fetch(url, options).then(checkStatus).then(parseJSON).then(checkAPIDatas).catch(checkAPIError);
 };
 export default request;