Blogger Information
搁浅
Blog
67
fans
0
comment
2
visits
71805
integral:0
P beans:148
  • List of blog posts
  • electron

    electron 安装依赖命令yarn //yarn安装npm install electron-icon-builder //--save-dev 安装生成icon图标依赖yarn add electron-icon-builderyarn add...

    2023-11-29 14:43 Read 171 comment 0
  • nvm安装和命令

    https://github.com/coreybutler/nvm-windows/releases找到nvm-setup.exe或者nvm-setup.zipnvm切换国内镜像如果下载node过慢或者安装失败,请更换国内镜像源, 在 nvm 的安...

    2023-11-28 22:53 Read 129 comment 0
  • PHP常用函数

    1、数组函数array(); 创建数组count(); 统计数组元素array_keys();获取数组keyarray_values; 获取数组值array_merge();合并数组array_combine();合并数组array_unique()...

    2023-11-26 17:37 Read 120 comment 0
  • TS数据类型

    TS数据类型 类型 例子 number 1,-32,3.6 任意数字 string hi,’hu’,”hi” 任意字符串 boolean true,false 布尔值 any ...

    2023-10-27 01:53 Read 273 comment 0
  • input输入限制

    只能输入数字 &l...

    2023-08-08 18:28 Read 985 comment 0
  • uniapp小程序发布新版本提示用户更新

    export default { onLaunch: function() { this.update() }, methods:{ update() { // 获取小程序更新机制兼...

    2023-06-30 15:49 Read 819 comment 0
  • 微信小程序发布新版本提示用户更新

    App({onShow: function (options) { this.updateApplet();},updateApplet: function (options) { //版本更新 if (wx.canIUse('ge...

    2023-06-29 15:47 Read 886 comment 0
  • uniapp请求封装

    http.jsconst $http = (url='',data={},mothod='GET',header={})=>{ const baseUrl = 'https://www.baidu.com' let promise = n...

    2023-06-27 23:45 Read 835 comment 0
  • react不能查看版本和创建项目

    1.搜索框输入:Windos PowerShell 以管理员身份运行2.输入set-ExecutionPolicy RemoteSigned3.选择Y或者A4.最后通过 get-ExecutionPolicy 查看当前的状态或者create-reac...

    2023-06-27 10:00 Read 838 comment 0
  • Laravel路由

    Route::get('/', function () {//get路由 return view('admin.order',['name'=>'试图路由']);//resources/views/admin/order模板,传递一个name键...

    2023-05-03 00:27 Read 892 comment 0
  • echarts配置项

    setOption({ title: { text: '血压趋势图',//左上角大标题 }, color:['#578EFF','#78A4FF','#FFAA00'],//自定义折线图等等图的颜色,不写就默认颜色。 ...

    2023-04-07 11:41 Read 949 comment 0
  • 微信小程序引入绝对路径

    方法1app.jsApp({ require: function($uri){return require($uri)}, onLaunch: function () { },)}page.jsconst app = getApp(...

    2023-04-06 19:07 Read 879 comment 0
  • 微信小程序使用echarts

    第一种使用方法wxml

    2023-04-12 15:27 Read 410 comment 0
  • phpstudy配置laravel教程及路由报404错误解决办法

    1、下载phpstudy,https://www.xp.cn2、下载Composer,https://getcomposer.org 在小皮面板里面下载3、安装phpstudy,安装Composer并且配置好PHP的路径.计算机任何路径dos,com...

    2023-05-03 00:26 Read 626 comment 0
  • Laravel框架结构目录

    目录结构 介绍根目录 app 目录bootstrap 目录config 目录database 目录public 目录resources 目录routes 目录storage 目录tests 目录vendor 目录 App 目录 Broadca...

    2023-03-28 15:14 Read 822 comment 0