在这篇微信小程序开发教程中,我们将介绍如何使用微信小程序开发企业内部宣传展示等功能。

一、小程序主体部分

一个小程序主体部分由三个文件组成,必须放在项目的根目录,如下:

1. 小程序逻辑

  1. App({
  2. onLaunch: function() {
  3. // Do something initial when launch.
  4. },
  5. onShow: function() {
  6. // Do something when show.
  7. },
  8. onHide: function() {
  9. // Do something when hide.
  10. },
  11. globalData: 'fangbei'
  12. })

2. 小程序公共设置

主要注册五个页面,设置窗口,以及显示在tabbar中显示三个页面

  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/news/news",
  5. "pages/news/news-details",
  6. "pages/product/product",
  7. "pages/contact/contact"
  8. ],
  9. "window": {
  10. "navigationBarTextStyle": "black",
  11. "navigationBarTitleText": "盛世华安",
  12. "navigationBarBackgroundColor": "#fbf9fe",
  13. "backgroundColor": "#fbf9fe"
  14. },
  15. "tabBar": {
  16. "color": "#dddddd",
  17. "selectedColor": "#459ae9",
  18. "borderStyle": "black",
  19. "backgroundColor": "#ffffff",
  20. "list": [{
  21. "pagePath": "pages/index/index",
  22. "iconPath": "images/index.png",
  23. "selectedIconPath": "images/index_selected.png",
  24. "text": "公司盛况"
  25. }, {
  26. "pagePath": "pages/product/product",
  27. "iconPath": "images/product.png",
  28. "selectedIconPath": "images/product_selected.png",
  29. "text": "产品服务"
  30. }, {
  31. "pagePath": "pages/contact/contact",
  32. "iconPath": "images/contact.png",
  33. "selectedIconPath": "images/contact_selected.png",
  34. "text": "联系我们"
  35. }]
  36. },
  37. "networkTimeout": {
  38. "request": ,
  39. "connectSocket": ,
  40. "uploadFile": ,
  41. "downloadFile":
  42. },
  43. "debug": true
  44. }

3. 公用样式表

  1. @import 'style/weui.wxss';
  2. @import "/utils/wxParse/wxParse.wxss";
  3.  
  4. page {
  5. background-color: #fbf9fe;
  6. height: 100%;
  7. }
  8. .container {
  9. display: flex;
  10. flex-direction: column;
  11. min-height: 100%;
  12. justify-content: space-between;
  13. }
  14. .page-header {
  15. display: flex;
  16. font-size: 32rpx;
  17. color: #aaa;
  18. margin-top: 50rpx;
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. .page-header-text {
  23. padding: 20rpx 40rpx;
  24. }
  25. .page-header-line {
  26. width: 150rpx;
  27. height: 1px;
  28. border-bottom: 1px solid #ccc;
  29. }
  30.  
  31. .page-body {
  32. width: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. flex-grow:;
  37. overflow-x: hidden;
  38. }
  39. .page-body-wrapper {
  40. margin-top: 100rpx;
  41. display: flex;
  42. flex-direction: column;
  43. align-items: center;
  44. width: 100%;
  45. }
  46. .page-body-wrapper form {
  47. width: 100%;
  48. }
  49. .page-body-wording {
  50. text-align: center;
  51. padding: 200rpx 100rpx;
  52. }
  53. .page-body-info {
  54. display: flex;
  55. flex-direction: column;
  56. align-items: center;
  57. background-color: #fff;
  58. margin-bottom: 50rpx;
  59. width: 100%;
  60. padding: 50rpx 0 150rpx 0;
  61. }
  62. .page-body-title {
  63. margin-bottom: 100rpx;
  64. font-size: 32rpx;
  65. }
  66. .page-body-text {
  67. font-size: 30rpx;
  68. line-height: 26px;
  69. color: #ccc;
  70. }
  71. .page-body-text-small {
  72. font-size: 24rpx;
  73. color: #000;
  74. margin-bottom: 100rpx;
  75. }
  76. .page-body-form {
  77. width: 100%;
  78. background-color: #fff;
  79. display: flex;
  80. flex-direction: column;
  81. width: 100%;
  82. border: 1px solid #eee;
  83. }
  84. .page-body-form-item {
  85. display: flex;
  86. align-items: center;
  87. margin-left: 30rpx;
  88. border-bottom: 1px solid #eee;
  89. height: 88rpx;
  90. font-size: 34rpx;
  91. }
  92. .page-body-form-key {
  93. width: 180rpx;
  94. color: #000;
  95. }
  96. .page-body-form-value {
  97. flex-grow:;
  98. }
  99. .page-body-form-value .input-placeholder {
  100. color: #b2b2b2;
  101. }
  102.  
  103. .page-body-form-picker {
  104. display: flex;
  105. justify-content: space-between;
  106. height: 100rpx;
  107. align-items: center;
  108. font-size: 36rpx;
  109. margin-left: 20rpx;
  110. padding-right: 20rpx;
  111. border-bottom: 1px solid #eee;
  112. }
  113. .page-body-form-picker-value {
  114. color: #ccc;
  115. }
  116.  
  117. .page-body-buttons {
  118. width: 100%;
  119. }
  120. .page-body-button {
  121. margin: 25rpx;
  122. }
  123. .page-body-button image {
  124. width: 150rpx;
  125. height: 150rpx;
  126. }
  127. .page-footer {
  128. text-align: center;
  129. color: #1aad19;
  130. font-size: 24rpx;
  131. margin: 20rpx 0;
  132. }
  133.  
  134. .green{
  135. color: #09BB07;
  136. }
  137. .red{
  138. color: #F76260;
  139. }
  140. .blue{
  141. color: #10AEFF;
  142. }
  143. .yellow{
  144. color: #FFBE00;
  145. }
  146. .gray{
  147. color: #C9C9C9;
  148. }
  149.  
  150. .strong{
  151. font-weight: bold;
  152. }
  153.  
  154. .bc_green{
  155. background-color: #09BB07;
  156. }
  157. .bc_red{
  158. background-color: #F76260;
  159. }
  160. .bc_blue{
  161. background-color: #10AEFF;
  162. }
  163. .bc_yellow{
  164. background-color: #FFBE00;
  165. }
  166. .bc_gray{
  167. background-color: #C9C9C9;
  168. }
  169.  
  170. .tc{
  171. text-align: center;
  172. }
  173.  
  174. .page input{
  175. padding: 20rpx 30rpx;
  176. background-color: #fff;
  177. }
  178. checkbox, radio{
  179. margin-right: 10rpx;
  180. }
  181.  
  182. .btn-area{
  183. padding: 10px 30px;
  184. }
  185. .btn-area button{
  186. margin-top: 20rpx;
  187. margin-bottom: 20rpx;
  188. }
  189.  
  190. .page {
  191. min-height: 100%;
  192. flex:;
  193. background-color: #FBF9FE;
  194. font-size: 32rpx;
  195. font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
  196. overflow: hidden;
  197. }
  198. .page__hd{
  199. padding: 50rpx 50rpx 100rpx 50rpx;
  200. text-align: center;
  201. }
  202. .page__title{
  203. display: inline-block;
  204. padding: 20rpx 40rpx;
  205. font-size: 32rpx;
  206. color: #AAAAAA;
  207. border-bottom: 1px solid #CCCCCC;
  208. }
  209. .page__desc{
  210. display: none;
  211. margin-top: 20rpx;
  212. font-size: 26rpx;
  213. color: #BBBBBB;
  214. }
  215.  
  216. page{
  217. background-color: #F8F8F8;
  218. font-size: 16px;
  219. font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
  220. }
  221. .page__hd {
  222. padding: 40px;
  223. }
  224. .page__bd {
  225. padding-bottom: 40px;
  226. }
  227. .page__bd_spacing {
  228. padding-left: 15px;
  229. padding-right: 15px;
  230. }
  231.  
  232. .page__ft{
  233. padding-bottom: 10px;
  234. text-align: center;
  235. }
  236.  
  237. .page__title {
  238. text-align: left;
  239. font-size: 20px;
  240. font-weight:;
  241. }
  242.  
  243. .page__desc {
  244. margin-top: 5px;
  245. color: #888888;
  246. text-align: left;
  247. font-size: 14px;
  248. }
  249. .swiper {
  250. width: 100%;
  251. height: 400rpx;
  252. }
  253. .slide-image {
  254. width: 100%;
  255. }
  256. .news {
  257. padding: 26rpx 40rpx 26rpx 40rpx;
  258. }
  259. .news-title {
  260. color: #AAAAAA;
  261. }
  262. .news-item {
  263. margin: 10rpx 0 10rpx 0;
  264.  
  265. background-color: #fff;
  266. }
  267. .news-item-pic {
  268. padding: 20rpx 0 10rpx 20rpx;
  269. width: 160rpx;
  270.  
  271. float: left;
  272. }
  273. .news-item-image {
  274. width: 100%;
  275. }
  276. .news-item-words {
  277. width: 450rpx;
  278. height: 65px;
  279. float: right;
  280. overflow-y: hidden;
  281. padding: 20rpx 10rpx;
  282. }
  283. .news-item-title {
  284. font-size: 11pt;
  285. word-break: keep-all;
  286. white-space: nowrap;
  287. overflow: hidden;
  288. text-overflow: ellipsis;
  289. }
  290. .news-item-content {
  291. font-size: 8pt;
  292. line-height: 13pt;
  293. text-overflow:ellipsis;
  294. color: #a9a9a9;
  295. }
  296. .news-more {
  297. color: #AAAAAA;
  298. font-size: 14px;
  299.  
  300. }
  301. .news-more-line {
  302. padding-left: -26rpx important;
  303. }
  304. .news-details-content {
  305. padding: 0 40rpx 100rpx 40rpx;
  306. }
  307. .video {
  308.  
  309. }
  310. .video-input {
  311. border: 1px solid #CCCCCC;
  312. }
  313. .contact {
  314. padding: 40rpx 40rpx 40rpx 40rpx;
  315. }
  316. image {
  317. height: auto;
  318. }

二、业务页面部分

小程序页面主要由以下文件组成。

本项目程序分为4个页面:主页、新闻详情页、产品服务页、联系我们页。

主页部分

主页效果图如下

1. 页面结构

上方是一个图片轮播图,中间是新闻列表,下文有一个查看更多导航

其页面结构代码如下

  1. <!--index.wxml-->
  2. <view class="index">
  3. <view class="slider">
  4. <swiper class="swiper" indicator-dots="{{indicatorDots}}"
  5. autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
  6. <block wx:for="{{swipers}}">
  7. <swiper-item>
  8. <navigator url="/pages/news/news-details?id={{item.id}}" class="widget">
  9. <image mode="widthFix" src="{{item.thumbnail_images.medium_large.url}}" class="slide-image" width="" height=""></image>
  10. </navigator>
  11. </swiper-item>
  12. </block>
  13. </swiper>
  14. </view>
  15. <view class="news">
  16. <text class="news-title">新闻动态</text>
  17.  
  18. <block wx:for="{{news}}">
  19. <navigator url="/pages/news/news-details?id={{item.id}}">
  20. <view class="news-item line">
  21. <view class="news-item-pic">
  22. <image mode="widthFix" src="{{item.thumbnail}}" class="news-item-image" width="" height=""></image>
  23. </view>
  24. <view class="news-item-words">
  25. <view class="news-item-title"><text>{{item.title_plain}}</text></view>
  26. <view class="news-item-content"><text>{{item.excerpt_plain}}</text></view>
  27. </view>
  28. </view>
  29. </navigator>
  30. </block>
  31.  
  32. <view class="widgets__list widgets__list_show">
  33. <navigator url="/pages/news/news?cat={{cat}}" class="widget_more">
  34. <text class="news-more">查看更多</text>
  35. <image class="widget__arrow" src="/images/arrowright.png" mode="aspectFill" />
  36. <view class="widget__line widget__line_first"></view>
  37. </navigator>
  38. </view>
  39. </view>
  40. </view>

2. 样式表

样式代码如下所示

  1. .index{
  2. background-color: #FBF9FE;
  3. font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
  4. flex:;
  5. min-height: 100%;
  6. font-size: 32rpx;
  7. }
  8. .head{
  9. padding: 80rpx;
  10. line-height:;
  11. }
  12. .body{
  13. padding-left: 30rpx;
  14. padding-right: 30rpx;
  15. overflow: hidden;
  16. }
  17. .title{
  18. font-size: 52rpx;
  19. }
  20. .desc{
  21. margin-top: 10rpx;
  22. color: #888888;
  23. font-size: 28rpx;
  24. }
  25.  
  26. .widgets__item{
  27. margin-top: 20rpx;
  28. margin-bottom: 20rpx;
  29. background-color: #FFFFFF;
  30. overflow: hidden;
  31. border-radius: 4rpx;
  32. cursor: pointer;
  33. }
  34. .widgets__info{
  35. display: flex;
  36. padding: 40rpx;
  37. align-items: center;
  38. flex-direction: row;
  39. }
  40. .widgets__info_show{
  41. }
  42. .widgets__info_show .widgets__info-img{
  43. transform: rotate(-90deg);
  44. }
  45. .widgets__info-name{
  46. flex:;
  47. }
  48. .widgets__info-img{
  49. width: 32rpx;
  50. height: 32rpx;
  51. transition: transform .4s;
  52. transform: rotate(90deg);
  53. }
  54.  
  55. .widgets__list{
  56. display: none;
  57. }
  58. .widgets__list_show{
  59. display: block;
  60. }
  61. .widget{
  62. position: relative;
  63. padding-top: 26rpx;
  64. padding-bottom: 26rpx;
  65. padding-left: 40rpx;
  66. padding-right: 40rpx;
  67. }
  68. .widget_more{
  69. position: relative;
  70. padding-top: 26rpx;
  71. padding-bottom: 26rpx;
  72. padding-left: 0rpx;
  73. padding-right: 40rpx;
  74. }
  75. .widget__arrow{
  76. position: absolute;
  77. top: 28rpx;
  78. right: 44rpx;
  79. width: 32rpx;
  80. height: 32rpx;
  81. }
  82. .widget__line{
  83. content: " ";
  84. position: absolute;
  85. left: 40rpx;
  86. top:;
  87. right:;
  88. height: 2rpx;
  89. background-color: #F0F0F0;
  90. }
  91. .widget__line_first{
  92. left:;
  93. right:;
  94. background-color: #D8D8D8;
  95. }

3、 页面逻辑处理

页面逻辑也是通过接口取网站的数据,并且存到swipet,news等数据中,供前端显示

  1. var CONFIG = require('../../utils/config.js')
  2.  
  3. Page({
  4. data: {
  5. indicatorDots: true,
  6. autoplay: true,
  7. interval: 5000,
  8. duration: 1000,
  9. swipers: [],
  10. news: [],
  11. cat: '17',
  12. },
  13.  
  14. onLoad: function () {
  15. var that = this;
  16. wx.request({
  17. url: CONFIG.API_URL.GET_INDEX,
  18. method: 'GET',
  19. data: {},
  20. header: {
  21. 'Accept': 'application/json'
  22. },
  23. success: function(res) {
  24. console.log(res);
  25.  
  26. if (res.statusCode == 200 && res.data.status == 'ok') {
  27. var data = res.data;
  28. var swipers = [];
  29. var news = [];
  30.  
  31. console.log(data);
  32. for (var i = 0; i < data.count; i++) {
  33. if (i < 3) {
  34. swipers.push(data.posts[i]);
  35. }
  36. else {
  37. var excerpt_plain = data.posts[i].excerpt.replace(/<[^>].*?>/g, "");
  38. data.posts[i].excerpt_plain = excerpt_plain.replace(/\[[^\]].*?\]/g, "");
  39. news.push(data.posts[i]);
  40. }
  41. }
  42. that.setData({swipers: swipers});
  43. that.setData({news: news});
  44. } else {
  45.  
  46. }
  47. }
  48. })
  49. },
  50. onShareAppMessage: function () {
  51. // return custom share data when user share.
  52. console.log('onShareAppMessage')
  53. return {
  54. title: '盛世华安',
  55. desc: '小程序',
  56. path: '/pages/index/index'
  57. }
  58. },
  59. });

产品服务页部分

产品服务页和主页的新闻列表页类似

1. 页面结构

其页面结构代码如下

  1. <view class="news">
  2. <text class="news-title">产品服务</text>
  3.  
  4. <block wx:for="{{news}}">
  5. <navigator url="/pages/news/news-details?id={{item.id}}">
  6. <view class="news-item line">
  7. <view class="news-item-pic">
  8. <image mode="widthFix" src="{{item.thumbnail}}" class="news-item-image" width="" height=""></image>
  9. </view>
  10. <view class="news-item-words">
  11. <view class="news-item-title"><text>{{item.title_plain}}</text></view>
  12. <view class="news-item-content"><text>{{item.excerpt_plain}}</text></view>
  13. </view>
  14. </view>
  15. </navigator>
  16. </block>
  17. </view>

2. 样式表

使用公共样式表。

3、 页面逻辑处理

请求官网接口数据并显示

  1. var CONFIG = require('../../utils/config.js')
  2.  
  3. Page({
  4. data: {
  5. },
  6. onLoad: function () {
  7. var that = this;
  8. wx.request({
  9. url: CONFIG.API_URL.GET_CATEGORY + '14',
  10. method: 'GET',
  11. data: {},
  12. header: {
  13. 'Accept': 'application/json'
  14. },
  15. success: function(res) {
  16. console.log(res);
  17.  
  18. if (res.statusCode == 200 && res.data.status == 'ok') {
  19. var data = res.data;
  20. var news = [];
  21.  
  22. console.log(data);
  23. for (var i = 0; i < data.count; i++) {
  24. var excerpt_plain = data.posts[i].excerpt.replace(/<[^>].*?>/g, "");
  25. data.posts[i].excerpt_plain = excerpt_plain.replace(/\[[^\]].*?\]/g, "");
  26. news.push(data.posts[i]);
  27. }
  28. that.setData({news: news});
  29. } else {
  30.  
  31. }
  32. }
  33. })
  34. },
  35. onReady:function(){
  36. // 页面渲染完成
  37. },
  38. onShow:function(){
  39. // 页面显示
  40. },
  41. onHide:function(){
  42. // 页面隐藏
  43. },
  44. onUnload:function(){
  45. // 页面关闭
  46. },
  47. go: function(event) {
  48. wx.navigateTo({
  49. url: '/pages/news/news-details?id=' + event.currentTarget.dataset.type
  50. })
  51. }
  52. })

联系我们页部分

1. 页面结构

其页面结构代码如下.

  1. <import src="../../utils/wxParse/wxParse.wxml"/>
  2. <view class="page">
  3. <view class="page__hd">
  4. <text class="page__title"></text>
  5. <text class="page__desc"></text>
  6. </view>
  7. <view class="news-details-content wxParse">
  8. <template is="wxParse" data="{{wxParseData:content.nodes}}"/>
  9. </view>
  10. </view>

2. 样式表

使用公共样式表。

3、 页面逻辑处理

请求官网接口数据并显示

  1. var CONFIG = require('../../utils/config.js')
  2. var WxParse = require('../../utils/wxParse/wxParse.js');
  3.  
  4. Page({
  5. data: {
  6. },
  7. onLoad: function () {
  8. var that = this;
  9. wx.request({
  10. url: CONFIG.API_URL.GET_PAGE + '36',
  11. method: 'GET',
  12. data: {},
  13. header: {
  14. 'Accept': 'application/json'
  15. },
  16. success: function(res) {
  17. console.log(res);
  18.  
  19. if (res.statusCode == 200 && res.data.status == 'ok') {
  20. var data = res.data;
  21.  
  22. that.setData({page: data.page});
  23. WxParse.wxParse('content', 'html', data.page.content, that, 25)
  24. } else {
  25.  
  26. }
  27. }
  28. })
  29. },
  30. onReady:function(){
  31. // 页面渲染完成
  32. },
  33. onShow:function(){
  34. // 页面显示
  35. },
  36. onHide:function(){
  37. // 页面隐藏
  38. },
  39. onUnload:function(){
  40. // 页面关闭
  41. },
  42. go: function(event) {
  43. wx.navigateTo({
  44. url: '/pages/news/news-details?id=' + event.currentTarget.dataset.type
  45. })
  46. }
  47. })

三、程序效果图

四、源代码下载

扫描下方二维码并关注公众账号,回复 “1238” 获取

源代码使用方法,请参考  微信小程序开发入门教程

微信小程序开发(4) 企业展示的更多相关文章

  1. 微信小程序开发日记——高仿知乎日报(中)

    本人对知乎日报是情有独钟,看我的博客和github就知道了,写了几个不同技术类型的知乎日报APP要做微信小程序首先要对html,css,js有一定的基础,还有对微信小程序的API也要非常熟悉 我将该教 ...

  2. 微信小程序开发工具使用与设计规范(二)

    [未经作者本人同意,请勿以任何形式转载] 上一篇文章主要分析了微信小程序应用场景和优劣势.本篇你可以学习到: 如何使用小程序开发工具写一个Hello World 微信小程序设计规范 微信小程序项目结构 ...

  3. 微信小程序开发详解——小程序,大颠覆!

    微信小程序开发 联系 苏念 188.1414.7927  微信小程序系统开发 微信新功能开发 小程序开发 小程序怎么开发 app小程序开发 简化小程序开发 微信小程序定制 小程序制作 开发微信小程序  ...

  4. 零基础入门微信小程序开发

    注:本文来源于:<零基础入门微信小程序开发> 课程介绍 本达人课是一个系列入门教程,目标是从 0 开始带领读者上手实战,课程以微信小程序的核心概念作为主线,介绍配置文件.页面样式文件.Ja ...

  5. 《腾讯游戏人生》微信小程序开发总结

    为打通游戏人生擂台赛与线下商家的O2O衔接,同时响应时下日臻火热的微信小程序,项目团队决定也开发一款针对性的微信小程序,以此方便商家在我们平台入驻并进行擂台赛事的创建和奖励的核销,进一步推广擂台赛的玩 ...

  6. 微信小程序开发日记——高仿知乎日报(上)

    本人对知乎日报是情有独钟,看我的博客和github就知道了,写了几个不同技术类型的知乎日报APP 要做微信小程序首先要对html,css,js有一定的基础,还有对微信小程序的API也要非常熟悉 我将该 ...

  7. 微信小程序开发工具测评

    1月9日微信小程序正式上线.很多企业都希望能在这个.但是在技术开发的问题上,却不知道该如何下手.经过一些程序员不辞辛苦连夜测试,终于从十余款工具呕心沥血筛选出四款比较靠谱实用的微信小程序开发工具.接下 ...

  8. 剖析简易计算器带你入门微信小程序开发

    写在前面,但是重点在后面 这是教程,也不是教程. 可以先看Demo的操作动图,看看是个什么玩意儿,GitHub地址(https://github.com/dunizb/wxapp-sCalc) 自从微 ...

  9. 微信小程序开发之入门篇(熟悉开发工具)

    个人的每一篇博文都谈不上有什么技术含量,只是为了帮助不熟悉微信小程序开发的自己及他人提供一下思路.谢谢,下面开始! PS: 因为本人没有小程序的内测资格,所以所有的开发及Demo都是无AppId的,如 ...

随机推荐

  1. 「TJOI2015」概率论 解题报告

    「TJOI2015」概率论 令\(f_i\)代表\(i\)个点树形态数量,\(g_i\)代表\(i\)个点叶子个数 然后列一个dp \[ f_i=\sum_{j=0}^{i-1} f_j f_{i-j ...

  2. iptables(4)规则编写

    /etc/sysconfig/iptables # Generated by iptables-save v1.4.7 on Tue Mar 20 15:05:33 2018*filter:INPUT ...

  3. kvm虚拟化管理

    虚拟化 KVM (kernel-based virtual machine) 常见的一些虚拟化的软件xen kvm vmware esx openVZ Oracle VM VirtualBox vsp ...

  4. 第二十二篇-Guideline基准线

    效果图: 前5个是button填充的,最后一个是线性布局下放置一个button在填充. layout.xml <?xml version="1.0" encoding=&qu ...

  5. python基础之logging

    import logging def logger(): logger = logging.getLogger('logger')#括号里面默认是root logger.setLevel('DEBUG ...

  6. Luogu P2148 [SDOI2009]E&D

    题目链接 \(Click\) \(Here\) 蒟蒻的人生第一道博弈论.真吉尔难啊.... 通常的博弈论写法似乎都是\(SG\)函数打表猜规律.本蒻其实本来想学一下博弈论的证明的,但后来发现果然还是打 ...

  7. Vue(基础七)_webpack使用工具(下)

    一.前言  1.webpack.config文件配置                                          2.webpack打包css文件                 ...

  8. tcping 与 telnet命令粗略使用

        使用tcping命令,在网上下载tcping文件,放入c盘的system32目录下,即可使用 使用tcping命令用来ping某个端口,能通的话,说明从外部到端口是没有问题的 使用telnet ...

  9. 学习笔记(node.js)

    因为做的笔记太多了,所以就直接发到百度云盘了. 第一天:是关于环境的配置,以及简单的练习. 云盘链接地址:链接:https://pan.baidu.com/s/1WLWtyTKWaQ32JpDUCF2 ...

  10. 【强大的Java集成开发工具】MyEclipse 2015 Stable 2.0 for Mac

    [简介] MyEclipse是一款 Mac 上的Java 强大的集成开发工具,今天和大家分享最新的 MyEclipse 2015 Stable 2.0 版本,MyEclipse 2015 基于 Ecl ...