hoyong

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

文章分类 -  FrontEnd

1 2 下一页

微信开发学习总结(二)——微信开发入门(转)
摘要:一、微信公众平台的基本原理 在开始做之前,先简单介绍了微信公众平台的基本原理。 微信服务器就相当于一个转发服务器,终端(手机、Pad等)发起请求至微信服务器,微信服务器然后将请求转发给我们的应用服务器。应用服务器处理完毕后,将响应数据回发给微信服务器,微信服务器再将具体响应信息回复到微信App终端。 阅读全文

posted @ 2019-08-13 17:02 hoyong 阅读(359) 评论(0) 推荐(0) 编辑

微信开发学习总结(一)——微信开发环境搭建(转)
摘要:目前移动开发处于比较火的的趋势,很多的开发者都跃跃欲试,目前移动App开发领域主要分为以下几种类型 我在平时的工作中接触得比较多的就是基于Android的Native App开发和基于微信公众号的Light App开发,今天就来带领大家快速进入微信公众号的开发领域. 一、微信开发环境搭建 工欲善其事 阅读全文

posted @ 2019-08-13 17:00 hoyong 阅读(112) 评论(0) 推荐(0) 编辑

微信公众号开发的开发环境要求和准备工作(转)
摘要:微信公众号开发的开发环境要求和准备工作 本文主要介绍才用asp.NET开发微信公众号相关功能准备事项和服务器准备实时性。 1、服务器软件开发环境: 1、IIS服务器 2、SQLSERVER 2008 R2 3、可外网IP或域名访问:80端口、433端口未占用 2、需要开放远程,开发人员可进入iis配 阅读全文

posted @ 2019-08-13 16:57 hoyong 阅读(287) 评论(0) 推荐(0) 编辑

React Native问题: app:preDebugBuild
摘要:FAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':app:preDebugBuild'.> Android dependency 'com.android.support:app 阅读全文

posted @ 2019-08-13 15:30 hoyong 阅读(1335) 评论(0) 推荐(0) 编辑

React Native问题: react-native-fbsdk:compileDebugJavaWithJavac
摘要:f8app项目中 What went wrong:Execution failed for task ':react-native-fbsdk:compileDebugJavaWithJavac'.> Compilation failed; see the compiler error output 阅读全文

posted @ 2019-08-13 15:24 hoyong 阅读(880) 评论(0) 推荐(0) 编辑

react-native 发行 apk 总结(转)
摘要:生成发行的 apk 在终端先进入根据目录下的 android 目录,然后执行./gradlew assembleRelease 表示执行当前目录下的 gradlew 脚本文件,执行参数是 assembleRelease,Gradle 的 assembleRelease 参数会把所有用到的 JavaS 阅读全文

posted @ 2019-08-08 16:39 hoyong 阅读(216) 评论(0) 推荐(0) 编辑

React Native: react-native-swiper: Cannot read property 'x' of undefined
摘要:Cannot read property 'x' of undefined Android device debugging is throw error Cannot read property 'x' of undefined,When I Debug JS Remotely to chrome 阅读全文

posted @ 2019-08-07 15:28 hoyong 阅读(704) 评论(0) 推荐(0) 编辑

React Native Warning处理
摘要:While using the life-cycle methods in react-native, I have encountered the following warning messages in the console as well as in the emulator: Warni 阅读全文

posted @ 2019-08-07 14:41 hoyong 阅读(348) 评论(0) 推荐(0) 编辑

npm 更新模块(转)
摘要:1. 更新模块注意事项 更新模块只能往后面版本更新,不能往老的版本回滚更新。 比如先安装了 lodash 模块 3.9.* 版本,可以往后更新到 3.10.* 版本,但是不能往前更新回 3.8.* 版本。 更新模块只能更新到小版本号最新的那个版本,不能更新大版本号。 一个模块的版本号由三部分组成:大 阅读全文

posted @ 2019-08-07 14:33 hoyong 阅读(1777) 评论(0) 推荐(0) 编辑

React Native常见报错解决整理(转)
摘要:React Native 从开发环境到入门练手,再到跑几个开源 demo 的整个过程中,遇到了不少问题,以下是对报错现象及解决方法的记录: Mac 上运行 iOS 项目 问题 1: npm ERR! Unexpected end of JSON input while parsing near ‘… 阅读全文

posted @ 2019-08-06 22:28 hoyong 阅读(2509) 评论(0) 推荐(0) 编辑

React Native问题: componentWillReceiveProps is deprecated
摘要:Warning: componentWillReceiveProps is deprecated and will be removed in the next major version. Use static getDerivedStateFromProps instead. 处理: From 阅读全文

posted @ 2019-08-01 22:19 hoyong 阅读(250) 评论(0) 推荐(0) 编辑

ReactNative问题: Failed child context type: Invalid child context `virtualizedCell.cellKey` of type `number` supplied(转)
摘要:FlatList使用, 解决方法:将_keyExtractor = (item, index) => index转为_keyExtractor = (item, index) => index.toString() 阅读全文

posted @ 2019-07-30 15:24 hoyong 阅读(674) 评论(0) 推荐(0) 编辑

如何使用VSCode 的Setting Sync插件(转)
摘要:如何使用 VSCode 的 Setting Sync 插件 这个是根据一位朋友的分享来整理发布的~ 使用插件将目前配置保存到 GitHub 上,以后只需要从 GitHub 上获取,就可以一次性安装插件配置信息。 Setting Sync 可同步包含的所有扩展和完整的用户文件夹 1) 设置文件 2) 阅读全文

posted @ 2019-07-26 16:17 hoyong 阅读(313) 评论(0) 推荐(0) 编辑

为react-native组件创建样式属性有两种方法(转)
摘要:第一种是在组件的style属性中直接插入一个包含样式属性的js对象: 第二种是使用StyleSheet创建一个样式表对象: 属性列表 1.宽高 width //宽 height //高 2.背景颜色(backgroundColor) backgroundColor opacity //透明度 3.边 阅读全文

posted @ 2019-07-26 11:19 hoyong 阅读(424) 评论(0) 推荐(0) 编辑

IDEA Material Theme UI 暗黑系主题的安装(转)
摘要:到jetbrains 官网下载了这个主题主题在IDEA官网的地址 https://plugins.jetbrains.com/search?headline=164-theme&pr_productId=&canRedirectToPlugin=false&showPluginCount=false 阅读全文

posted @ 2019-07-20 12:19 hoyong 阅读(4336) 评论(0) 推荐(0) 编辑

webstorm2017.3最新激活教程(旧版本可用,亲测成功,有疑问随时联系)(转)
摘要:一、License server 注册安装完成,打开Webstorm,在弹出的License Activation窗口中选择“License server”,在输入框输入下面的网址:http://idea.imsxm.com/ 有小伙伴反映版本更新之后该链接不起作用了,请使用以下链接: http:/ 阅读全文

posted @ 2019-07-19 15:13 hoyong 阅读(1129) 评论(0) 推荐(0) 编辑

ReactNative问题:info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. error Failed to run jetifier. Run CLI with --verbose flag for more details. Error:
摘要:ReactNative问题: info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.error Failed to run jetifier. Run 阅读全文

posted @ 2019-07-16 16:33 hoyong 阅读(4380) 评论(0) 推荐(0) 编辑

ReactNative问题: warning react-native > create-react-class > fbjs > core-js@1.2.7: core-js@<2.6.8 is no longer maintained. Please, upgrade to core-js@3 or at least to actual version of core-js@2
摘要:ReactNative问题: warning react-native > create-react-class > fbjs > core-js@1.2.7: core-js@<2.6.8 is no longer maintained. Please, upgrade to core-js@3 阅读全文

posted @ 2019-07-13 16:15 hoyong 阅读(14475) 评论(0) 推荐(3) 编辑

跨域
摘要:域名 端口 协议 三者有一不同就跨域; 处理: 1. JSONP; 2. 后台允许跨域; 此方式需要服务器接口API支持JOSNP; 如何查看服务器接口支持JSONP: 如正常请求地址: http://www.phonegap100.com/appapi.php?a=getPortalList&ca 阅读全文

posted @ 2019-07-02 15:05 hoyong 阅读(81) 评论(0) 推荐(0) 编辑

普通匿名函数作为参数时, 其中的this指向window
摘要:下面的这种函数,并不指向windows,而是事件对应的dom对象: 按 不过,这样的函数已经不是真正的匿名函数了,比如你可以通过: document.getElementById('a').onclick(); 阅读全文

posted @ 2019-06-29 12:54 hoyong 阅读(410) 评论(0) 推荐(0) 编辑

1 2 下一页
点击右上角即可分享
微信分享提示