摘要: 1、MySQL 为关系型数据库(Relational Database Management System), 这种所谓的"关系型"可以理解为"表格"的概念, 一个关系型数据库由一个或数个表格组成 2、sql语句: SELECT * FROM sdb_link SELECT link_id FROM 阅读全文
posted @ 2017-07-18 17:18 js初学者 阅读(129) 评论(0) 推荐(0)
摘要: canvas 属性参考手册:http://www.w3school.com.cn/tags/html_ref_canvas.asp 阅读全文
posted @ 2017-07-18 11:38 js初学者 阅读(229) 评论(0) 推荐(0)
摘要: vue 与mint UI 结合开发手机app html5页面 api 文档 http://mint-ui.github.io/#!/zh-cn 阅读全文
posted @ 2017-07-17 18:01 js初学者 阅读(179) 评论(0) 推荐(0)
摘要: 1、store.commit({'type':'mutation','parameter':'value'}); store.dispatch('action'); 2、获取state保存的值 store.state.state 阅读全文
posted @ 2017-07-17 17:51 js初学者 阅读(1461) 评论(0) 推荐(0)
摘要: 1、引入 vue.js vuex.js 文件 2、创建Store文件 var sSatte=new Vuex.Store({ state:{}, mutations:{}, actions:{} }) 阅读全文
posted @ 2017-07-17 17:47 js初学者 阅读(221) 评论(0) 推荐(0)
摘要: 1、Vue.component('component-test', { props:{}, data:function(){ return{} }, mounted:function(){}, computed:{ }, methods:{ }, template:'' }); 2、var item 阅读全文
posted @ 2017-07-17 17:40 js初学者 阅读(203) 评论(0) 推荐(0)
摘要: 1、angular 表达式 2、ng-app ng-init ng-model ng-repeat ng-model是用于表单元素的,支持双向绑定。对普通元素无效; ng-bind用于普通元素,不能用于表单元素,应用程序单向地渲染数据到元素; 当ng-bind和{{}}同时使用时,ng-bind绑定 阅读全文
posted @ 2017-07-14 09:50 js初学者 阅读(112) 评论(0) 推荐(0)