本篇参考: https://developer.salesforce.com/docs/component-library/bundle/lightning-input/documentation https://www.lightningdesignsystem.com/components/in ...
分类:
其他好文 时间:
2020-04-22 13:24:38
阅读次数:
86
.netcore3.1在iis中发布需要安装 Hosting Bundle和 ASP.NET Core Runtime 3.1.2,但安装了hosting宿主之后其他站点就会挂掉,不可访问。 解决方案:1、停止IIS2、修改 C:\Windows\System32\inetsrv\config\ap ...
分类:
Web程序 时间:
2020-04-22 09:40:02
阅读次数:
167
进行功能书写,页面跳转 private Button.OnClickListener btnlogin=new Button.OnClickListener(){ public void onClick(View v){ Intent it=new Intent(); it.setClass(Mai ...
分类:
其他好文 时间:
2020-04-22 00:11:01
阅读次数:
59
一、前言 昨天完成了加载页,星球页的设计,学习了Fragment实现底部导航栏。 今天将Cardview与传感器结合起来,实现了发布表可以跟随手机晃动。学习了Fragment的嵌套实现了我的页面上“我的发帖”与“我的回帖”的切换。遇到的困难:一些控件或者版本之间的冲突,通过查阅资料,修改包解决问题; ...
分类:
其他好文 时间:
2020-04-18 23:02:03
阅读次数:
91
检查你有没有把静态库和动态库配置错误!! 下图处是配置动态库的地方! 对于动态库和静态库都有使用的时候,注意把静态库设置成“Do not Embeded” ...
分类:
移动开发 时间:
2020-04-12 16:37:20
阅读次数:
214
const path = require('path'); const Webpack = require('webpack'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const ManifestPlugin = req ...
分类:
Web程序 时间:
2020-04-09 16:45:18
阅读次数:
97
gem install bundlerERROR: Loading command: install (LoadError) cannot load such file -- opensslERROR: While executing gem ... (NoMethodError) undefine ...
分类:
系统相关 时间:
2020-04-08 09:27:53
阅读次数:
169
加载xib的两种方式 NSArray *array = [[NSBundle mainBundle] loadNibNamed:@"test" owner:nil options:nil]; UINib *nib = [UINib nibWithNibName:@"Test" bundle:nil] ...
分类:
其他好文 时间:
2020-04-07 00:18:03
阅读次数:
71
程序中各组件交互的方式 显示意图 指定activity名称 Intent intent = new Intent(this,第二个activity.class);startActivity(intent); 隐式意图 在配置文件,默认只给第一个页面加过滤器application标签下 <activi ...
分类:
移动开发 时间:
2020-04-06 23:26:43
阅读次数:
79
题目: 编辑距离 给你两个单词 word1 和 word2,请你计算出将 word1 转换成 word2 所使用的最少操作数 。 你可以对一个单词进行如下三种操作: 插入一个字符删除一个字符替换一个字符 示例 1: 输入:word1 = "horse", word2 = "ros"输出:3解释:ho ...
分类:
其他好文 时间:
2020-04-06 15:38:34
阅读次数:
77