This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#PHP注释规范 | |
##通用注释写法 | |
###一、文件的注释通用样例(普通程序文件,类文件,函数文件,变量定义文件) | |
``` | |
/** | |
* XXXXX的文件 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 数据存储工具 | |
*/ | |
import Storage from 'react-native-storage'; | |
import {AsyncStorage} from 'react-native'; | |
const storage = new Storage({ | |
// 最大容量,默认值1000条数据循环存储 | |
size: 1000, |