自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

微信小程序云端增強(qiáng) SDK接入

移動開發(fā)
XpmJS可以鏈接任何云端資源,為小程序、移動應(yīng)用提供云資源通道和后端能力。降低開發(fā)門檻,提升小程序的開發(fā)效率。無需編寫后端代碼,即可實(shí)現(xiàn)用戶登錄、WebSocket 通信、微信支付、云端數(shù)據(jù)表格、文件存儲等功能。雖然 PHP 是最好的編程語言, 但是使用 XpmJS 后, 無需學(xué)習(xí)包括 PHP 在內(nèi)的任何后端語言,用 Javascript 即可搞定一切,NodeJS 也不用!

【引自第九程序的博客】一、XpmJS 是啥

XpmJS可以鏈接任何云端資源,為小程序、移動應(yīng)用提供云資源通道和后端能力。降低開發(fā)門檻,提升小程序的開發(fā)效率。無需編寫后端代碼,即可實(shí)現(xiàn)用戶登錄、WebSocket 通信、微信支付、云端數(shù)據(jù)表格、文件存儲等功能。雖然 PHP 是最好的編程語言, 但是使用 XpmJS 后, 無需學(xué)習(xí)包括 PHP 在內(nèi)的任何后端語言,用 Javascript 即可搞定一切,NodeJS 也不用!

二、為啥 XpmJS

從代碼結(jié)構(gòu)上看 XpmJS 更優(yōu)雅!因?yàn)槭褂昧?Promise!

 

XpmJS 封裝了常用后端操作,還提供一個管理后臺,微信支付只要一行代碼就可以實(shí)現(xiàn)!

 

后端部署在你的云主機(jī)上!你可以完全掌控數(shù)據(jù)。

方法1: 一鍵安裝

推薦使用騰訊云一鍵安裝鏈接 ( 訪問微信接口快, 可以免費(fèi)申請 Https 證書 )

方法2: 安裝腳本

安裝前,先提前申請 Docker Hub 鏡像 申請地址 https://www.daocloud.io/mirror

  1. # 請采用 Ubuntu 14.04 64位 LTS 
  2.  
  3. curl -sSL http://tuanduimao.com/xpmjs-server.sh | sh -s yourdomain.com http://<your id>.m.daocloud.io  

方法3: 使用 Docker 安裝

  1. # 安裝 Docker  
  2. curl -sSL https://get.daocloud.io/docker | sh 
  3.  
  4. # 啟動容器 
  5. docker run -d --name=xpmjs-server  \ 
  6.     -e "HOST=yourdomain.com" \ 
  7.     -v /host/data:/data  \ 
  8.     -v /host/apps:/apps  \ 
  9.     -v /host/config:/config  \ 
  10.     -p 80:80 -p 443:443  \ 
  11.     tuanduimao/xpmjs-server:1.0  

XpmJS Server 升級

第一步: 下載代碼:

  1. curl http://xpmjs-1252011659.costj.myqcloud.com/xpmjs-server-1.0.tar.gz 

第二步: 解壓并更新:

  1. tar xvfz xpmjs-server-1.0.tar.gz 
  2.  
  3. cd 1.0 && docker cp . xpmjs-server:/code  

三、XpmJS 咋用

1. 用戶 ( User )

用戶登錄 login()

  1. var user = app.xpm.require('User'); 
  2.  
  3. user.login().thenfunction( userInfo ) {  
  4.  
  5.     console.log( '用戶登錄成功', userInfo ); 
  6.     app.session.set('loginUser', userInfo ); 
  7. }) 
  8.  
  9. .catch( function( excp ) {  
  10.     console.log('用戶登錄失敗', excp ); 
  11. }); 

用戶退出 logout()

  1. var user = app.xpm.require('User'); 
  2.  
  3. user.logout().thenfunction( userInfo ) {  
  4.     console.log( '用戶注銷成功', userInfo ); 
  5. }) 
  6.  
  7. .catch( function( excp ) {  
  8.     console.log('用戶注銷失敗', excp ); 
  9. });  

讀取資料 get()

來自微信客戶端的用戶信息 ( 非云端數(shù)據(jù) )

  1. var user = app.xpm.require('User'); 
  2.  
  3. user.get().thenfunction( userInfo ) {  
  4.     console.log( '讀取成功', userInfo ); 
  5. }) 
  6.  
  7. .catch( function( excp ) {  
  8.     console.log('讀取失敗', excp ); 
  9. });  

2. 信道( Wss )

使用 Websocket 信道,可以實(shí)現(xiàn)雙向?qū)崟r通信。

打開信道 open()

  1. var wss = app.xpm.require('Wss'); 
  2. wss.open('/wxapp').then(function( res ) { 
  3.     console.log( '信道連接成功', res ); 
  4. }) 
  5. .catch( function( excp ) {  
  6.     console.log('信道連接失敗', excp ); 
  7. });  

在線用戶 liveUsers ()

  1. var wss = app.xpm.require('Wss'); 
  2. wss.liveUsers().then(function( users ) { 
  3.     console.log( '讀取在線用戶成功', users ); 
  4. }) 
  5. .catch( function( excp ) {  
  6.     console.log('讀取在線用戶失敗', excp ); 
  7. });  

用戶信息數(shù)據(jù)結(jié)構(gòu)

字段 中文 說明
id 客戶端ID  
_id 用戶ID  
nickName 微信昵稱  
gender 性別  
avatarUrl 頭像  
language 語言  
group 用戶組  
isadmin 是否是管理員 0 非管理員 1 管理員

檢查用戶是否在線 isOnline ( xpmjs-server 1.0rc4+ )

  1. var user = app.xpm.require('User'); 
  2. var wss = app.xpm.require('Wss'); 
  3.  
  4. user.login().thenfunction( userInfo ) {  
  5.     return wss.isOnline( userInfo['_id'] ) 
  6.  
  7. }).then function( isOnline ) { 
  8.     if ( isOnline ) { 
  9.         console.log( '用戶在線'); 
  10.     } else { 
  11.         console.log( '用戶離線'); 
  12.     } 
  13. }) 
  14. .catch( function( excp ) {  
  15.     console.log('出錯啦', excp ); 
  16. });  

監(jiān)聽指令 listen()

小程序僅提供 WebSocket 客戶端 API,所以小程序本身無法實(shí)現(xiàn) WebSocket服務(wù)器。 wss.listen() 方法并非啟動 WebSocket Server, 而是用來接收云端信道轉(zhuǎn)發(fā)的指令。

  1. var wss = app.xpm.require('Wss'); 
  2. wss.listen('payment'function( res, status ){ 
  3.     // 當(dāng)接收到 payment 指令后運(yùn)行  
  4.     if ( status != 'success'return ; 
  5.     console.log( res, status ); 
  6. });  

發(fā)送指令 send()

  1. var wss = app.xpm.require('Wss'); 
  2. wss.liveUsers().then(function( users ) { 
  3.     console.log( '讀取在線用戶成功', users ); 
  4.     // 向第一個用戶發(fā)送 payment 指令 
  5.     if ( users.length > 0 )  { 
  6.         return wss.send('payment', users[0], users[0]['id'] ) 
  7.     } else { 
  8.         return {code:404, message:'no live user'}; 
  9.     } 
  10.  
  11. }).thenfunction( res ){ 
  12.     console.log('發(fā)送完畢', res); 
  13. }); 
  14. .catch( function( excp ) {  
  15.     console.log('出錯了', excp ); 
  16. });  

綁定事件 bind()

接收并處理 websocket 服務(wù)器事件,有效值 ( open/close/message/error )

  1. var wss = app.xpm.require('Wss'); 
  2. wss.bind('open'function(event) { 
  3.     console.log('信道服務(wù)器開啟', event ); 
  4. }); 
  5.  
  6. wss.bind('close'function(event) { 
  7.     console.log('信道服務(wù)器關(guān)閉', event ); 
  8. });  

3. 會話 ( Session )

Session 會話分為客戶端和服務(wù)端兩部分,客戶端與服務(wù)端會話ID相同,客戶端保存用戶信息資料,服務(wù)端保存用戶 openid 等敏感信息。與服務(wù)端通信,使用Sesssion ID 鑒權(quán),通過服務(wù)器端驗(yàn)證后,請勿將 Session ID 發(fā)送給第三方。

啟用會話 start()

啟用會話后,會自動創(chuàng)建一個會話ID

  1. var session = app.xpm.require('session'); 
  2.     session.start();  

會話 ID id()

  1. var session = app.xpm.require('session'); 
  2. var sid = app.id(); 
  3. console.log( sid );  

客戶端會話數(shù)據(jù)管理 set() & get()

  1. var session = app.xpm.require('session'); 
  2.  
  3. session.set('hello''world'); 
  4.  
  5. console.log( session.get('hello') );  

4. 云端表格 ( Table )

可以使用云端表格接口,將數(shù)據(jù)保存在 MySQL 中,可以通過 SQL 查詢數(shù)據(jù)。

創(chuàng)建數(shù)據(jù)表 _schema()

僅管理員帳號擁有創(chuàng)建數(shù)據(jù)表權(quán)限 ( 登錄管理后臺,打開用戶表,將開發(fā)者對應(yīng)帳號記錄的 isadmin 字段數(shù)值設(shè)置為 1 )

 

  1. var table = app.xpm.require('Table''hello'); 
  2. table._schema( 
  3.     [   
  4.       {name:"name", type:'string'option:{length:80, require:true }, acl:"rwd:r:-" }, 
  5.       {name:"company", type:'string'option:{length:100}, acl:"w:-:-" } 
  6.     ],  
  7.     { record:"rwd:rw:-"table:"rwd:-:-", field:'rwd:r:-',  user:'admin'group:'member' } 
  8. true ).thenfunction( data ) { 
  9.     console.log('數(shù)據(jù)表創(chuàng)建成功', data ); 
  10. }) 
  11. .catch( function( excp ) {  
  12.     console.log('數(shù)據(jù)表創(chuàng)建失敗', excp ); 
  13. });  

字段配置參數(shù)

參數(shù) 中文 說明
name 字段名稱  
type 字段類型 string/integer/text/boolean 等
option 字段參數(shù) index:true 索引 unique:true 唯一索引 length:80 字段長度
acl 字段鑒權(quán) rw:rw:rw r: 讀取 w: 寫入 -:無 user:group:other

數(shù)據(jù)增刪改查 get() create() update() remove()

  1. var table = app.xpm.require('Table''hello'); 
  2.  
  3. // 創(chuàng)建 
  4. table.create(  
  5.     {name:'張藝謀', company:'中國電影制片廠'
  6. ).then(function(data) { // 更新 
  7.     return table.update(data['_id'], {name:'馮小剛'}); 
  8.  
  9. }).then(function(data) { // 讀取 
  10.     return table.get(data['_id']); 
  11.  
  12. }).then(function(data) { // 刪除 
  13.     return table.remove(data['name'], 'name' ); 
  14.  
  15. }).then(function(resp) { 
  16.     console.log( 'remove success', resp ); 
  17.  
  18. }).catch( function( excp ) {  
  19.     console.log('出錯了', excp ); 
  20. });  

數(shù)據(jù)查詢 query()

  1. var table = app.xpm.require('Table''hello'); 
  2. table.query() 
  3.     .where('name''=''馮小剛'
  4.     .orderby('name''asc'
  5.     .limit(2)  // 僅查詢 2條  
  6.  
  7. .fetch('name','company').then(function(data) {   
  8.     console.log( '查詢結(jié)果', data );  
  9. }) 
  10.  
  11.  
  12. table.query() 
  13.     .where('name''=''馮小剛'
  14.     .orderby('name''asc'
  15.     .paginate(3, 2)  // 分3頁,當(dāng)前顯示第 2頁  
  16.  
  17. .fetch('name','company').then(function(data) {   
  18.     console.log( '查詢結(jié)果', data );  
  19. });  

聯(lián)合查詢 join(), leftjoin(), rightjoin() (xpmjs-server 1.0rc4+)

Table 1: User

id name title
1 張三 產(chǎn)品經(jīng)理
2 李四 工程師
3 王五 運(yùn)維工程師

Table 2: Project

id name uid
1 小程序開發(fā)組 1
2 網(wǎng)頁開發(fā)組 3

   

  1. var table = app.xpm.require('Table''Project'); 
  2. table.query() 
  3.     .join('User''User.id''=''Project.uid' )  // leftjoin / rightjoin 
  4.     .limit(1)   
  5. .fetch('User.id as userid''User.name as username''Project.*').then(function(data) {   
  6.     console.log( '查詢結(jié)果', data );  
  7. })  

返回值

  1.     { 
  2.         "id":1, 
  3.         "name":"小程序開發(fā)組" 
  4.         "userid":1, 
  5.         "username":"產(chǎn)品經(jīng)理" 
  6.  
  7.     } 
  8.  

inWhere 查詢 inWhere()

Table 1: User

id name title
1 張三 產(chǎn)品經(jīng)理
2 李四 工程師
3 王五 運(yùn)維工程師

Table 2: Project

id name users
1 小程序開發(fā)組 ["1","2","3"]
2 網(wǎng)頁開發(fā)組 ["1", "3"]

   

  1. var table = app.xpm.require('Table''Project'); 
  2. table.query() 
  3.     .inWhere('users''User''id''*' ) 
  4.     .limit(1)   
  5. .fetch('User.id as userid''User.name as username''Project.*').then(function(data) {   
  6.     console.log( '查詢結(jié)果', data );  
  7. })  

返回值

  1.     { 
  2.         "id":1, 
  3.         "name":"小程序開發(fā)組" 
  4.         "users":[ 
  5.             { 
  6.                 "id":1, 
  7.                 "name":"張三"
  8.                 "title":"產(chǎn)品經(jīng)理" 
  9.             } 
  10.             ... 
  11.         ] 
  12.  
  13.     } 
  14.  

5. 微信支付 ( Pay )

發(fā)起支付 request();

  1. var pay = app.xpm.require('Pay'); 
  2. pay.request({ 
  3.     total_fee:500,  // 單位分 
  4.     body:'算命、服務(wù)器開光'
  5.     attach:'HELLO XpmJS.com',  
  6.     detail:'{id:888,desp:"算命,抽SSR,贈送服務(wù)器開光"}' 
  7. }).then(function( data ){ 
  8.     console.log('Request Pay Success', data ); 
  9. }).catch( function( excp){ 
  10.     console.log('Request Pay Failure', excp ); 
  11. });  

云端事件 before(), success(), fail(), complete() (xpmjs-server 1.0rc4+)

  1. pay.before('create', {  // 創(chuàng)建充值記錄 (統(tǒng)一下單成功后, 發(fā)起支付前, 在云端運(yùn)行 ) 
  2.     'table':'income'
  3.     'data': { 
  4.         sn:'{{sn}}'
  5.         order_sn: data.order.sn, 
  6.         uid:data.order.uid, 
  7.         amount:data.order.sale_price, 
  8.         amount_free:0, 
  9.         status:'PENDING'
  10.         status_tips:"F請求付款" 
  11.     } 
  12. }) 
  13.  
  14. .order({   // 生成訂單  ( 統(tǒng)一下單接口, 僅設(shè)定并不發(fā)送請求 ) 
  15.     total_fee:data.order.sale_price,  // 單位分 
  16.     body:data.order.show_name, 
  17.     attach:'attach user is ' + mid,  // 應(yīng)該是當(dāng)前登錄用戶的 ID  
  18.     detail:data 
  19. }) 
  20.  
  21. .success('update', { // 更新充值記錄 ( 支付成功后回調(diào),在云端運(yùn)行 ) 
  22.     'table':'income'
  23.     'data': { 
  24.         sn:'{{sn}}'
  25.         status:'DONE'
  26.         status_tips:"income status_tips field" 
  27.     }, 
  28.     'unique':'sn' 
  29. }) 
  30.  
  31. .success('app', {   // 調(diào)用APP 示例 ( 支付成功后回調(diào),在云端運(yùn)行 ) 
  32.     'name':'xapp'
  33.     'api':['ticket','index',{sn:'{{sn}}','status_tips':"{{0.status_tips}}"}], 
  34.     'data': { 
  35.         sn:'{{sn}}'
  36.         status:'DONE' 
  37.     } 
  38. }) 
  39.  
  40. .success('update', {  // 更新訂單狀態(tài) ( 支付成功后回調(diào),在云端運(yùn)行 ) 
  41.     'table':'order'
  42.     'data': { 
  43.         _id:oid, 
  44.         status:'PENDING' 
  45.     } 
  46. }) 
  47.  
  48. .success('create', {   // 創(chuàng)建消費(fèi)記錄 ( 支付成功后回調(diào),在云端運(yùn)行 ) 
  49.     'table':'payout'
  50.     'data': { 
  51.         sn:'{{sn}}'
  52.         order_sn: data.order.sn, 
  53.         uid:data.order.uid, 
  54.         amount:data.order.sale_price, 
  55.         amount_free:0, 
  56.         status:'DONE'
  57.         status_tips:"F請求付款" 
  58.     } 
  59. }) 
  60.  
  61. .request().then(function( payResp  ) {  // 發(fā)起請求 
  62.     console.log( payResp ); 
  63. })  

6. 本地存儲 ( Stor )

  1. var stor = app.xpm.require('Stor'); 
  2.  
  3. stor.setSync('key','value'); 
  4.  
  5. console.log(stor.getSync('key')); 
  6.  
  7. stor.setMapSync('map_name''key''value'); 
  8.  
  9. console.log(stor.getMapSync('map_name','key'));  

7. 云端應(yīng)用 ( App ) (xpmjs-server 1.0rc3+)

調(diào)用示例

  1. var xapp = app.xpm.require('App''xapp' );  // xapp 應(yīng)用名稱 
  2.  
  3. xapp.api( 'ticket''available' )  // ticket 控制器  available 方法名 
  4.  
  5. .post({ 
  6.     'train_date':'2017-01-26'
  7.     'from_station':'BJP'
  8.     'to_station':'SHH' 
  9. }) 
  10.  
  11. .thenfunction( resp ) { 
  12.   console.log('POST RESP:', resp ); 
  13. }) 
  14.  
  15. .catch( function( excp ) { 
  16.   console.log('POST EXCP:', excp ); 
  17. });  

XpmJS 云端應(yīng)用開發(fā)

參考云端應(yīng)用 Demo <火車票余票查詢接口實(shí)現(xiàn)>

https://git.oschina.net/xpmjs/xapp

 

8. 云端隊(duì)列 ( Que.js ) (xpmjs-server 1.0rc4+)

  1. var que = app.xpm.require('Que''hello'); 
  2. que.select('world').push('create', {  // 增加數(shù)據(jù) 
  3.     table:'payout'
  4.     data: { 
  5.         sn:'200193'
  6.         order_sn:'test29993'
  7.         amount:100, 
  8.         status:'DONE' 
  9.     } 
  10. }).push('update', { // 更新數(shù)據(jù) 
  11.     table:'order'
  12.     data: { 
  13.         sn:'148457330261256'
  14.         status_tips:'{{0.sn}} {{0.status}}' 
  15.     }, 
  16.     unique:'sn' 
  17. }).push('app', {   // 調(diào)用APP 示例 
  18.     'name':'xapp'
  19.     'api':['ticket','index',{sn:'{{0.sn}}'}], 
  20.     'data': { 
  21.         sn:'{{0.sn}} {{1.sn}}'
  22.         status:'DONE' 
  23.     } 
  24. }).run().then(function(resp){ 
  25.     console.log( 'Response', resp ); 
  26. }) 
  27. .catch(function(excp){ 
  28.     console.log( 'Error', excp ); 
  29. })  

9. 文件上傳 Utils.upload & App.upload (xpmjs-server 1.0+)

上傳文件到騰訊云對象存儲

  1. var qcloud = app.xpm.require('app''xqcloud'); 
  2. qcloud.api("cos",'upload'
  3.  
  4. .upload( tempFilePaths[0] ) 
  5. .then(function(data){ 
  6.     that.setData({ 
  7.         'rs.corver':data.access_url, 
  8.         'rs.images':[data.access_url] 
  9.     }); 
  10. }) 
  11. .catch( function(excp){ 
  12.     console.log('Upload Fail', excp ); 
  13. });  

10. 常用方法 ( Utils )

請求網(wǎng)址 ( Utils.fetch ) (xpmjs-server 1.0rc3+)

  1. var utils = app.xpm.require('Utils' );   
  2.  
  3. utils.fetch'http://qcloud.com' ).thenfunction( resp ) {     
  4.     console.log('FETCH RESP:', resp ); 
  5. }) 
  6.  
  7. .catch( function( excp ) { 
  8.   console.log('FETCH EXCP:', excp ); 
  9. });  

生成二維碼圖片 ( Utils.qrImageUrl ) (xpmjs-server 1.0+)

返回二維碼圖片地址

  1. var utils = app.xpm.require('Utils' );  
  2. var url = utils.qrImageUrl('hello world', {size:200}); 
  3. console.log( url );  

生成小程序頁面二維碼 ( Utils.qrcode ) ( xpmjs-server 1.0 )

  1. var utils = app.xpm.require('Utils' ); 
  2.  
  3. var url = utils.qrcode('/page/detail?id=1'); 
  4.  
  5. console.log( url );  

三、微信小程序 Demo 

 

小程序 Demo 源碼

四、安裝配置

1. 云端配置

【安裝后端程序】

推薦使用騰訊云( 訪問微信接口快, 可以免費(fèi)申請 Https 證書 )

方法1: 使用腳本安裝 ( 目前僅支持 Ubuntu 14.04 64 LTS 操作系統(tǒng) )

創(chuàng)建一臺云服務(wù)器,選擇 Ubuntu 14.04 64 LTS 操作系統(tǒng)。 登錄服務(wù)器運(yùn)行以下腳本。

安裝前,先提前申請 Docker Hub 鏡像 申請地址 https://www.daocloud.io/mirror

  1. curl -sSL http://tuanduimao.com/xpmjs-server.sh | sh -s yourdomain.com http://<your id>.m.daocloud.io 

方法2: 使用 Docker 安裝

  1. docker run -d --name=xpmjs-server  \ 
  2.     -e "HOST=yourdomain.com" \ 
  3.     -v /host/data:/data  \ 
  4.     -v /host/apps:/apps  \ 
  5.     -v /host/config:/config  \ 
  6.     -p 80:80 -p 443:443  \ 
  7.     tuanduimao/xpmjs-server:1.0  

【設(shè)置管理員名稱和密碼】

訪問: http://yourdomian.com/setup.php

1、填寫后臺信息

 

2、填寫管理員信息

 

【上傳 HTTPS 證書 & 微信支付證書】

訪問:http://yourdomian.com/baas-admin/cert/index 上傳 HTTPS 證書和證書密鑰; 如已申請微信支付,建議盡量上傳支付證書,用于雙向驗(yàn)證證書和密鑰,確保支付安全。

 

上傳好證書后,登錄服務(wù)器,重啟容器。

  1. docker restart xpmjs-server 

訪問: https://yourdomian.com ( 有 "S", 檢查證書是否生效 )

【設(shè)置小程序配置信息】

訪問: https://yourdomian.com/baas-admin/conf/index ( 有 "S", 填寫小程序和微信支付的信息 )

 

2. 使用 XpmJS

【下載代碼】

使用 Git Bash , 進(jìn)入小程序項(xiàng)目目錄, 運(yùn)行 git clone 拉去代碼。(也可以 使用 Git 等客戶端 Clone 代碼 )

  1. git clone https://git.oschina.net/xpmjs/xpmjs.git xpmjs 

克隆成功后的目錄結(jié)構(gòu)為:

 

 

【編寫配置信息】

編輯 app.js 將域名更換為你的域名。( 必須配置好 Https 證書 )

  1. App({ 
  2.  
  3.   onLaunch: function () { 
  4.  
  5.     var that = this; 
  6.  
  7.     // 創(chuàng)建 xpm 對象 
  8.     this.xpm = require('xpmjs/xpm.js').option({ 
  9.         'app':1,  // 對應(yīng)后臺 APP 配置,支持5個 
  10.         'host':'yourdomian.com'
  11.         'https':'yourdomian.com'
  12.         'wss''yourdomian.com/ws-server'
  13.         'table.prefix''demo'
  14.         'user.table':'user' 
  15.     }); 
  16.  
  17.     // 創(chuàng)建全局對象 
  18.     this.wss = this.xpm.require('wss');  // 信道 
  19.     this.session = this.xpm.require('session');  // 會話 
  20.     this.stor = this.xpm.require('stor'); // 存儲 
  21.  
  22.   }, 
  23.  
  24.   xpm:null
  25.   session:null
  26.   stor:null
  27.   wss:null 
  28. })  

建議將 xpm、wss、session、stor 設(shè)定為全局變量。 

責(zé)任編輯:龐桂玉 來源: 第九程序的博客
相關(guān)推薦

2016-11-04 10:31:49

微信程序指南

2017-05-08 15:03:07

微信小程序開發(fā)實(shí)戰(zhàn)

2016-10-20 21:02:12

微信小程序javascript

2017-01-09 10:01:49

微信小程序

2017-06-09 10:06:54

微信小程序架構(gòu)分析

2017-06-09 12:58:20

微信小程序架構(gòu)分析

2017-06-09 10:40:00

微信小程序架構(gòu)分析

2016-09-28 18:10:59

微信程序MINA

2016-11-22 11:23:52

微信小程序騰訊微信

2016-09-27 16:38:24

JavaScript微信Web

2016-09-27 15:40:58

微信程序前端

2016-11-04 10:49:48

微信小程序

2021-06-10 10:51:27

程序基礎(chǔ)架構(gòu)

2016-11-19 18:06:44

微信小程序張小龍

2016-09-27 20:36:23

微信HttpWeb

2015-02-11 14:45:16

微信SDK

2017-02-06 13:32:12

微信小程序思想

2018-07-26 15:16:50

小程序iPhone X甜酸

2018-09-11 10:32:07

云開發(fā)小程序開發(fā)者

2016-11-04 09:55:16

微信小程序
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號