上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页
  2020年3月18日
摘要: 原因:vuex 用到ES6语法,IE不支持。 解决步骤 1.安装babel-polyfill npm install --save -dev babel-polyfill 2.引入,在引入vuex之前引入 import 'babel-polyfill' 举例1: 在main.js引入 import 阅读全文
posted @ 2020-03-18 15:37 biind 阅读(450) 评论(0) 推荐(0)
  2020年3月8日
摘要: 1.安装 2.使用 3.router几个用法 一 安装 npm安装 npm install vue-router 二 使用 1.绑定vue对象 2.异步加载组件 component: () => import('../views/mysetting/person') <script> import 阅读全文
posted @ 2020-03-08 16:48 biind 阅读(224) 评论(0) 推荐(0)
  2020年3月5日
摘要: 1.vue入口,新增命令 2.页面暴露埋点 // The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf wit 阅读全文
posted @ 2020-03-05 20:08 biind 阅读(592) 评论(0) 推荐(0)
  2020年2月22日
摘要: 步骤: 1.模块一:路由数组1 2.模块二:路由数组2 3.将路由数组1和路由数组2,添加到框架路由对象 import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) let myroutes = [] let conca 阅读全文
posted @ 2020-02-22 17:58 biind 阅读(632) 评论(0) 推荐(0)
  2020年2月18日
摘要: 1.安装vue-cli3 2.运行 一 安装vue-cli3 如果有旧版本脚手架,卸载老版本:npm uninstall -g vue-cli 安装新版本:npm install –g @vue/cli 二 运行 1.创建项目 cms:vue create cms 2.进入项目目录:cd cms 3 阅读全文
posted @ 2020-02-18 15:30 biind 阅读(226) 评论(0) 推荐(0)
  2020年2月11日
摘要: 什么是跨域? 前端,ajax请求,浏览器禁止跨域,因为不安全;像 <a href =‘’> 标签,就没有跨域问题;跨域只针对ajax请求。 1.域名不同,例如:www.jd.com www.taobao.com 2.端口不同,例如:www.jd.com:80 www.jd.com:81 3.二级域名 阅读全文
posted @ 2020-02-11 08:38 biind 阅读(163) 评论(0) 推荐(0)
  2020年2月2日
摘要: 1.下载地址:https://chromecj.com/web-development/2019-09/2955/download.html 20200202174823chromecj.com.crx 后缀改为zip,解压到文件夹A 2.谷歌浏览器打开:chrome://extensions/ 添 阅读全文
posted @ 2020-02-02 18:02 biind 阅读(4064) 评论(0) 推荐(0)
  2020年1月4日
摘要: 1.nodejs安装 2.配置nodejs 3.安装vue 4.使用vue搭建项目 1.nodejs安装 安装包地址:下载 查看安装是否成功 node -v 2.配置nodejs(占用空间大,不要放在c盘) npm config set prefix "D:\Program Files\nodejs 阅读全文
posted @ 2020-01-04 12:40 biind 阅读(300) 评论(0) 推荐(0)
  2019年7月13日
摘要: 官网教程:https://docs.microsoft.com/zh-cn/aspnet/core/getting-started/?view=aspnetcore-3.0&tabs=windows 目录: 1.新建项目.NET CORE API 2.连接mysql(使用EF) 3.部署到windo 阅读全文
posted @ 2019-07-13 12:08 biind 阅读(5168) 评论(0) 推荐(1)
  2019年5月22日
摘要: package main import "fmt" func main() { dosomething() } func dosomething(){ defer func() { if err:=recover();err!=nil{ fmt.Println(err) // 捕捉异常,比如记录日志 //... 阅读全文
posted @ 2019-05-22 20:39 biind 阅读(142) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页