会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
1111
星小星啊
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
2019年10月31日
微信小程序引入外部字体(字体图标过大,引入外链)
摘要: 1.把字体放在服务器上,因为字体图标比较大,小程序只支持2m 2.字体加载 3.检测是否加载成功(可能会存在https和http问题,防止跨域)
阅读全文
posted @ 2019-10-31 16:31 星小星啊
阅读(1448)
评论(0)
推荐(0)
2018年11月19日
Android项目打包遇com.android.builder.internal.aapt.v2.Aapt2Exception: AAPT2 error: check logs for details
摘要: 查了网上很多处理都是在项目的gradle.properties中添加下面的配置,再编译就通过了:android.enableAapt2=false
阅读全文
posted @ 2018-11-19 12:27 星小星啊
阅读(7208)
评论(0)
推荐(0)
2018年10月30日
解决reverse改变原数组
摘要: let arr =[1,2,3,4] console.log(arr) //[1,2,3,4] let arr2 = arr; console.log(arr2) //[4,3,2,1] console.log(arr) //[4,3,2,1] reverse():该方法会改变原来的数组,而不会创建
阅读全文
posted @ 2018-10-30 15:57 星小星啊
阅读(1693)
评论(0)
推荐(0)
2018年10月26日
react native 安卓home返回键页面刷新
摘要: import { withNavigationFocus } from 'react-navigation'; class Warngreete extends React.Component { constructor(props) { super(props); } componentDidMo
阅读全文
posted @ 2018-10-26 11:53 星小星啊
阅读(1089)
评论(0)
推荐(0)
2018年10月25日
react native 子组件向父组件传值
摘要: 父组件: 引入子组件:import CheckBox from '../checkbox'; 父子之间交互通信,接受子组件的值 fn(val){this.setState({roleType:val});} //调用通信 <CheckBox data={this.state.roleType} is
阅读全文
posted @ 2018-10-25 21:14 星小星啊
阅读(2564)
评论(0)
推荐(0)
2018年10月19日
react native 中时间选择插件
摘要: Properties
阅读全文
posted @ 2018-10-19 17:53 星小星啊
阅读(2121)
评论(0)
推荐(0)
2018年10月17日
react native头部标题样式修改
摘要: navigationOptions: ({navigation}) => ({ headerTitle:'评估记录', headerBackTitle:null, headerLeft:null, headerStyle: { backgroundColor: '#000', color:'#fff
阅读全文
posted @ 2018-10-17 16:50 星小星啊
阅读(2467)
评论(0)
推荐(0)
react native navigationOptions中不能获取this
摘要: 在最外部声明: let that; 在class内部: constructor(props){ super(props); that = this; } 在const * = StackNavigation({})中: static navigationOptions = ({ navigation
阅读全文
posted @ 2018-10-17 14:57 星小星啊
阅读(2314)
评论(0)
推荐(1)
2018年10月12日
react native( rn) 中关于navigationOptions中headerRight 获取navigation的问题 rn
摘要: 使用以下代码获取navigation static navigationOptions = ({ navigation, navigationOptions }) => { const { params } = navigation.state; return { tabBarVisible: tr
阅读全文
posted @ 2018-10-12 16:10 星小星啊
阅读(2275)
评论(0)
推荐(1)
2018年4月18日
string与number转换
摘要: 数字变字符串:str+'' 字符串变数字:str-0
阅读全文
posted @ 2018-04-18 22:19 星小星啊
阅读(1254)
评论(0)
推荐(0)
上一页
1
2
3
公告