分类目录

链接

2018 年 3 月
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

热门标签

新人福利,免费薅羊毛

asp.net mvc auth2.0简化版——服务端

 public class AuthController : Controller     {         private static readonly List<string> client_id_list = new List<string>() { "123456789" };         private static readonly List<string> response_type_list = new List<string>() { "code" };         private static readonly List<UserInfo> user_list = new List<UserInfo>();         private static readonly List<UserCode> user_code_list = new List<UserCode>();         private s...

.NET 暂无评论 阅读(506)

Salseforce Ant Migration Tool

Ant Migration Tool 什么是Ant Migration Tool,Ant Migration Tool是一个手动(代码)发布你的APP到saleforce的工具。 为什么要用这个ant mig tool呢,salesforce也可以在线发布呢,目的就是,项目多了以后,命令更方便。   安装 1.安装JDK 2.安装 Apache Ant, version 1.6 or newer. 3.设置环境变量,JAVA的不说了,要设置ant的, a.增加ANT_HOME=D:\Program Files\apache-ant-1.10.2 b.在PATH下增加:;%ANT_HOME%/bin; 4.使用ant -version检查是否成功 测试例子 1 .在你的 Apache Ant 目标下, 解压,进入...

Salesforce 暂无评论 阅读(513)

eclipse调用salseforce soap api

内容参考: https://resources.docs.salesforce.com/202/latest/en-us/sfdc/pdf/salesforce_developer_environment_tipsheet.pdf https://www.cnblogs.com/zero-zyq/p/6077773.html 具体步骤: 1.下载Force.com Web Service Connector 下载链接为http://mvnrepository.com/artifact/com.force.api/force-wsc 2.下载开发的WSDL文件 Setup->Build->API,这里有很多可以选择的WSDL,企业级WSDL,合作伙伴,元信息等。此处选择企业级WSDL,选择以后详情页右键另存为MyProject.wsdl,名字随便起 不同WSDL区别:https:...

Salesforce 暂无评论 阅读(480)

mysql插入单引号字符串

此时将字符串中的单引号" ' "替换成"  ' '  "两个单引号即可。 此时应该利用java中的“replace”方法进行替换。此处给出java中的替换代码。   public static void main(String[] args) throws Exception{         Server ss=new Server();         String str="I'm a boy";         String temp=str.replaceAll("'", "''");         String sql="insert into test VALUES('"+temp+"');";         ss.operate(sql, 2);         System.out.println(temp);         System.out.println(sql);     } 此时的输出结...

MySQL 暂无评论 阅读(519)

关于技术,写在30岁以后

关于技术,写在30岁以后 1.30岁以前不断地学习和了解各种语言、技术、平台,扩大了自己的知识面,遇到问题时,能够想到更多的解决方案。 2.30岁以后,打算专一一点,不再那么狂热地追求新技术,而是把一件事情做好,做到极致 3.泛娱乐:定位之后的赚钱的方向还是泛娱乐 30岁以后:专注泛娱乐

Others 暂无评论 阅读(406)

30岁以后:专注泛娱乐

泛娱乐行业的产值和规模分布 2017年,就不同品类的内容所产生的市场总价值而言,中国泛娱乐产业已是一个近6000亿元的市场,前景惊人。 其大致分布为游戏1700亿元(增速8-10%),剧集和综艺1200亿元(增速30-25%),电影1250亿元(增速5-10%),动漫780亿元(增速25-30%)。 >>文学 网络文学是泛娱乐产业中的重要一环,是诸多重要IP的培育场,为泛娱乐产业发展提供了源源不断的动力。 网络文学的价值被重新发掘,也让其成为互联网巨头争相布局的领域。 >>剧&综艺 剧集和综艺有着不同的变现模式——...

Others 暂无评论 阅读(458)

Lightning Components Demo

A component that provides a concrete type-specific input component implementation based on the data to which it is bound. Represents an input field that corresponds to a field on a Salesforce object. This component respects the attributes of the associated field. For example, if the component is a number field with 2 decimal places, then the default input value contains the same number of decimal places. It loads the input field according to the field type. If the compone...

Salesforce 暂无评论 阅读(514)

成都公积金提取资料

成都公积金提取资料: 2-公积金委托提取须知

Others 暂无评论 阅读(380)

lightning app:

要求:Share Lightning Out Apps with Non-Authenticated Users lightning app:报错 XMLHttpRequest cannot load https://XXXXX.lightning.force.com/c/XXXXXXXX.app?aura.format=JSON&aura.formatAdapter=LIGHTNING_OUT. Redirect from 'https://XXXXX.lightning.force.com/c/XXXXXX.app?aura.format=JSON&aura.formatAdapter=LIGHTNING_OUT' to 'https://XXXXXX.my.salesforce.com/visualforce/session?url=https%3A%2F%2FXXXXX.lightning.force.com%2Fc%2FXXXXXXXX.app%3Faura.format%3DJSON%26aura.fo...

Salesforce 暂无评论 阅读(450)

ASP.NET MVC分页 demo

//servcie using System; using System.Collections.Generic; using System.Linq; using System.Web; using StaticMvc.Models;   using Webdiyer.WebControls.Mvc; namespace StaticMvc {     public class ArticleService     {         public PagedList<Article> GetPagedList(int page, int count)         {             PagedList<Article> result = GetList().ToPagedList(page, count);             result.TotalItemCount = GetList().Count();             result.CurrentPageIndex = pag...

.NET 暂无评论 阅读(506)