摘要:
直接上代码 using (var db = Context) { using (var TR = db.Database.BeginTransaction()) { try { GoodsImg model = new GoodsImg(); model.CreateTime = DateTime. 阅读全文
摘要:
一、搭建项目1. vue init nuxt-community/starter-template testPro --testPro为项目名称-项目文件夹名称2. Project name (testPro) test-pro --输入项目名称(不能有大写字母)3. Project descrip 阅读全文
摘要:
//获取URL参数 getUrlKey(name) { return ( decodeURIComponent( (new RegExp("[?|&]" + name + "=" + "([^&;]+?)(&|#|;|$)").exec( window.location.href ) || [, " 阅读全文
摘要:
小程序中没有</br>换行标签,直接使用\n也是不行的这个时候我们要再标签上加一个css样式,white-space:pre-wrap 列子: <view style="white-space:pre-wrap">这是文本信息\n换行</view> 阅读全文
摘要:
1.wx.navigateTo({url:'页面路径'}) 保留当前页面,跳转指定页面(可以携带参数)。 2.wx.redirectTo({url: '页面路径'}) 卸载当前页面,跳转指定页面(可以携带参数)。 3.wx.switchTab({url: '页面路径'}) 跳转到tabBar页面(在 阅读全文
摘要:
先上图: 1.在你页面文件夹的 json文件中 添加 "enablePullDownRefresh": true, 启用下拉刷新 "onReachBottomDistance": 50 下拉的上下间距 2.你页面的js文件,监控下拉事件在里面写上你要加载的方法就行(onPullDownRefresh 阅读全文
摘要:
先来一个input框 <input confirm-type="search" bindconfirm="startSearch"></input> 1 confirm-type有效值: search 右下角按钮会变为“搜索” send 右下角按钮会变为“发送” next 右下角按钮会变为“下一个” 阅读全文
摘要:
1、公式计算 worksheet.Cells["D2:D5"].Formula = "B2*C2";//这是乘法的公式,意思是第二列乘以第三列的值赋值给第四列,这种方法比较简单明了worksheet.Cells[6, 2, 6, 4].Formula = string.Format("SUBTOTA 阅读全文
摘要:
A:<button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"></button> B:<button open-type="getUserInfo" lang="zh_CN" bindgetphonenumber=" 阅读全文
摘要:
这个在线预览Office文档这个东西,比如说 word、excel、ppt、PFD这些东西,我刚开始做的时候用的C#手敲的。 可以做完之后就发现太**丑了~ 咳咳,原归正传,自己写的太丑了,后来就干脆调用了网上的接口,提前声明不是为这个平台打广告,就是感觉比较好用给大家分享一下 平台名称是:永中软件 阅读全文