- 博客(38)
- 收藏
- 关注
原创 vue3-(jeecgBoot) 本地图片展示,部署后加载失败解决
开始使用的方法如下:结果是本地运行测试可以正常显示,部署发布后就不显示了解决方案**:图片地址配置为变量import defImg from ‘/@/assets/images/icon-alarm-default.png’;完美解决!你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器
2024-02-27 16:19:22 1108
原创 Vue2-(jeecgBoot) img大图预览
img 图片展示,大图预览失效解决,代码中使用的预览组件为:vue-photo-preview。使用场景:详情页面-model.images循环展示,点击查看大图,不能点击。在详情数据请求完毕加 this.$previewRefresh();
2024-02-27 16:12:30 756
原创 node- 图片文件下载存储 拷贝
一般我们采用最简单的第一种方式:[[NSNotificationCenterdefaultCenter] postNotificationName:@"name"object:nil];
2023-11-28 17:18:07 943 2
原创 间隔30分钟展示
/ arr.push(new Date(Number(date.getTime()) + Number(step*60*1000*f))) // 标准时间数组。// 算出多少个间隔(24 * 60) / step。// 时分秒设置从零点开始。// 获取:零点的时间 + 每次递增的时间。// step = 间隔的分钟。
2023-11-23 15:22:23 119
原创 接上一篇Trao文本行数及省略号问题
// 文本过长省略号截断@mixin ellipsis-text($lineNum) { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; word-break: break-all; /* autoprefixer: off */ -webkit-box-orient: vertical;...
2020-04-28 15:37:01 200
原创 Taro Text 限制文本行数
text-overflow: ellipsis;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: 80px;//限制行数 要-webkit-line-clamp和height组合但是现在还有一个问题就是超出设置行数显示...,说是这个属...
2020-04-26 15:31:50 1153
原创 Taro 页面子视图有scrollView,滑动时带动整个View
刚开始有点无头绪,接触Taro时间不长。然后就想着去github瞅瞅,果然找到了解决方案:页面的config中设置disableScroll: true即可
2020-04-26 15:24:36 2936 1
原创 Mac 清除缓存删除文件导致webstorm打开失败的解决方案
打开应用出错信息:Log path '/Users/XX/Library/Logs/WebStorm2018.1' is inaccessible.If you have modified the 'idea.log.path' property please make sure it is correct,otherwise please re-install the IDE.解决方案:解决1....
2018-06-01 09:51:15 2066
转载 unable to load script from assets 'index.android.bundl
配置RN运行环境时报错,如下:,发现一个可行的解决方案,尝试已成功运行说是新版本文件名已经从index.android.js变为了index.js;至于assets文件夹就是用来存放index.android.bundle等文件用;按照步骤:1 新建assets进入\android\app\src\main新建assets文件夹2 修改entry–file根目录cmd运行命令:react-n...
2018-03-01 15:39:21 373
原创 react-native-router-flux popTo('想pop到的scene') 回退多级不能实现问题
我测试的react-native-router-flux版本是"version": "4.0.0-beta.24":修改地方:1、将src/Reducer下第54行 // while (nextScene !== currentScene && newState && nextScene !== routeName) {修改为while
2017-12-18 16:49:58 1156
原创 IOS 自定义framework
鉴于iOS审核要求,我们只能加静态库1、新建工程,选择2、新建测试文件,一般选择继承自NSObject,在.h中自定义方法 -(void)customTest;在.m中实现该方法-(void)customTest{NSLog(@"hello,frist custom framework",);}3、在TARGETS下选中工程,在Build Setti
2017-10-31 15:30:59 322
原创 Hbuilder 学习使用中的一些记录
hbuilder介绍及简单使用百度百科:https://baike.baidu.com/item/HBuilder/9145003?fr=aladdin官网:http://www.dcloud.ioHBuilder/HTML5+/5+SDK/MUI/App http://ask.dcloud.net.cn/docs/#//ask.dcloud.net.cn
2017-09-30 17:31:29 1121
转载 Hbuilder Mui iOS新建精简项目报错处理
首先贴出Xcode报错信息Undefined symbols for architecture x86_64:"_kCGImagePropertyGIFUnclampedDelayTime", referenced from:-[PTGIF initWithGIFData:] in liblibPDRCore.a(PDRToolSystemEx.o)"_CGImageS
2017-09-30 17:20:16 846
原创 webstorm androidSDK 配置(Mac)
1、下载androidSDK,一般直接放在资源库下;2、打开终端,我使用的zsh。vi zshrc 打开,将一下代码片段粘贴进去保存退出。export ANDROID_HOME=~/Library/Android/sdkexport PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools3.source .zshr
2017-09-21 11:37:39 3069
原创 React-native Webstorm调试
Webstorm2017最新功能现在网上分享的都是老版本的配置方法,新版运行iOS和Android十分方便!1、首先找到运行按钮旁边的向下箭头,打开Edit Configurations2、点击+号,选择React Native,然后编辑右侧的Name(例如运行iOS,可起名为iOS),再选择Target platform即可。3、直接点击运行按钮即可,(当然是在你具备
2017-04-06 17:10:19 3817
原创 UITableView didSelected与UITapGesture 冲突解决
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath方法与UIGestureRecognizer冲突的解决方案:}-((BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecogniz
2016-11-15 10:26:55 667
转载 iOS 版本检查更新
#pragma mark - 检查更新- (void)checkUpdateWithAPPID:(NSString *)APPID{ //获取当前应用版本号 NSDictionary *appInfo = [[NSBundle mainBundle] infoDictionary]; NSString *curren
2016-05-21 10:55:14 463
原创 webview 等比缩放
- (void)webViewDidFinishLoad:(UIWebView *)webView { [webView stringByEvaluatingJavaScriptFromString:@"document.body.style.zoom=0.5"]; }修改网页表头内容: NSString *meta = [NSStri
2015-12-07 11:55:13 1115
原创 xcode 真机运行出错Please verify that your device’s clock is properly set
Xcode7.1 真机运行出错:Please verify that your device’s clock is properly set, and that your signing certificate is not expired. (0xE8008018).
2015-11-24 08:48:54 820
原创 archive 时出错 cordova/CDVViewController.h not found
"$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include"
2015-11-03 16:27:36 512
转载 iOS 如何解决UITableView刷新卡顿现象
虽然说SDWebImage提供了一个方法,异步加载图片到UIImageView上但是,有些时候。需要的图片并不是需要铺满UIImageView于是就抛弃了,后来想想还是挺二逼的。我可以在下面在铺一层边框UIImageView也能达到这个效果于是乎,故作高大上,非要自己写。后来看别人的方法,找到点感觉,还是写出来了,不过还是建立在网络良好的情况下解决办法
2015-10-29 15:14:26 2095
转载 iOS 9之适配ATS
ATS(App Transport Security)http://www.cocoachina.com/ios/20151021/13722.html
2015-10-22 14:05:39 331
转载 解决interactivePopGestureRecognizer与UIPanGestureRecognizer冲突
解决interactivePopGestureRecognizer与UIPanGestureRecognizer冲突2015-07-30 21:12:51CSDN-linhanmin-点击数:60在当前vc里添加self.navigationController.interactivePopGestureRecognizer.en
2015-09-02 14:34:40 414
转载 cell 刷新
//一个section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //一个cell刷新 NS
2015-09-02 13:42:28 380
转载 720 PanoramaGL 解析
#import #进口 #import " PLView.h" #导入“PLView.h”@interface HelloPanoramaViewController : UIViewController { @接口HelloPanoramaViewController:UIViewController { IBOutlet PLView * plView; IBOutlet PLView *
2015-05-22 15:42:45 382
转载 正确设定背景图片 ios
在View里放背景图片就像很多其它iOS编程一样有很多方法:使用UIColor的 colorWithPatternImage来设置背景色;在view中添加一个UIImageView作为一个子View。如果你使用全画幅的背景图,你就必须使用UIImageView因为UIColor的colorWithPatternImage是用来创建小的重复的图片作为背景的。这种情形下使用UI
2015-05-21 15:42:44 688
转载 UITableView 避免奔溃的数组越界处理方法
0x7403d 0x3b36cab7)libc++abi.dylib: terminating with uncaught exception of type NSException(lldb)这个方法objectAtIndex:的说明- (id)objectAtIndex:(NSUInteger)indexDescription Returns the object locat
2015-05-09 12:05:15 906
原创 字符串 汉字/数字提取
//提取出汉字部分 NSMutableString *month = [[NSMutableStringalloc] init]; //需要的长度 int position = 4; for(int i =0; i selectMonth.text.length; i++){ if(position == 0){
2015-05-08 17:43:32 527
转载 AFNetworking 1.x使用
Request Failed with Error: Error Domain=AFNetworkingErrorDomain Code=-1016 "Expected content type {( "text/javascript", "application/json", "text/json")}, got text/html" UserInfo=0x7f
2015-03-17 18:01:48 367
转载 MJRefresh导入错误
导入MJRefresh时出现错误:1,Unknown type name 'CGFloat',解决:导入头文件#import ,或者可以将Compile Sources As 改为 Objective-C++ 2、 主要错误在objc_msgSend(self.beginRefreshingTaget, self.beginRefreshingAction, self
2015-03-16 11:40:34 1767
转载 微信利用PHP创建自定义菜单的方法
在使用通用接口前,你需要做以下两步工作:1.拥有一个微信公众账号,并获取到appid和appsecret(在公众平台申请内测资格,审核通过后可获得)2.通过获取凭证接口获取到access_token注意:access_token是第三方访问api资源的票据;access_token对应于公众号是全局唯一的票据,重复获取将导致上次获取的access_token失效。访问下
2014-12-28 10:38:38 588
转载 iOS 打开内置setting
程序间通信的实现描述了通过URL Scheme的方式在应用中打开其他应用,本文则是用这种方式打开内置的Settings应用。 Ios代码 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]]; 以
2014-08-30 10:48:00 697
转载 UIViewContriller 视图跳转
在父视图中通过presentModalViewController创建第一个子视图,然后在第一个自视图中创建第二个子视图。如何在第二个子视图中返回最初的父视图。if ([self respondsToSelector:@selector(presentingViewController)]){ [self.presentingViewController.pr
2014-07-24 17:14:59 510
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人