原創:荊秀網網頁即時推送 | 轉載請註明出處
連結:
本系列教學以ThinkJS v2.x 版本(官網)為例進行介紹,教程以實際操作為主。
本篇繼續講解 Controller 的使用。
如果想要在物件實例化的時候做點事情,建構方法是最好的選擇。 ES6 提供的建構方法是 constructor
。
constructor方法是類別的預設方法,透過new指令產生物件實例時,自動呼叫方法。一個類別必須有constructor方法,如果沒有明確定義,一個空的constructor方法會被預設為添加。
方法
ECMAScript 6 入門作者:阮一峰
thinkjs 強大的地方在於,我們不僅可以規規矩矩的export default class
自己宣告Class ,也提供了動態建立Class 的方法:think.controller
。
但是thinkjs 動態建立的Class 沒有constructor
,而是提供了一個init
作為建構方法的替代方法,該方法的使用方式與constructor
一致。
上一篇文章(Node.js 國產MVC 框架ThinkJS 開發controller 篇基底類別與繼承鏈部分)中也有init
方法的使用範例,再看程式碼:
// src/home/controller/base.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);// 要求全部 url 必须携带 auth 参数let auth = this.get('auth');if (think.isEmpty(auth)) { return this.error(500, '全部 url 必须携带 auth 参数');} }}
當然這並不是表示不能使用constructor
方法了,假如你是像我一樣習慣使用export default class
自己宣告Class 的筒子,還是可以用回標準的constructor
方法的。
thinkjs 動態建立 Class 的方法請參考官方文檔,這裡不再贅述。
thinkjs 實現了幾個很有用的魔術方法,為開發提供了極大的便利,手動點讚~
顧名思義,前置操作會搶先在Controller 中具體的Action 執行之前執行,就是「在xxx 之前執行」的意思。來看程式碼:
// src/home/controller/user.js'use strict';export default class extends think.controller.base { __before() {console.log('this is __before().'); } indexAction() {console.log('this is indexAction().');return this.end(); }}// 访问 /home/user/index 的执行结果如下:// this is __before().// this is indexAction().
那麼可能有人會說:看起來 __before
跟 init
是一樣的用途。老規矩,來看程式碼:
// src/home/controller/user.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);console.log('this is init().'); } __before() {console.log('this is __before().'); } indexAction() {console.log('this is indexAction().');return this.end(); }}// 访问 /home/user/index 的执行结果如下:// this is init().// this is __before().// this is indexAction().
看到了嗎?執行還是有先後順序的,再來個複雜一點的:
// src/home/controller/base.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);console.log('this is base.init().'); }}// src/home/controller/user.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);console.log('this is user.init().'); } __before() {console.log('this is user.__before().'); } indexAction() {console.log('this is user.indexAction().');return this.end(); }}// 访问 /home/user/index 的执行结果如下:// this is base.init().// this is user.init().// this is user.__before().// this is user.indexAction().
好吧,你會說「意料之中」~
明白了前置操作,後置操作也不難理解,看程式碼:
// src/home/controller/user.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);console.log('this is init().'); } __before() {console.log('this is __before().'); } __after() {console.log('this is __after().'); } indexAction() {console.log('this is indexAction().');return this.end(); }}// 访问 /home/user/index 的执行结果如下:// this is init().// this is __before().// this is indexAction().
咦?貌似有地方不對。 。 。 __after
沒執行。
這當然不是 __after
寫在 indexAction
上面導致的!修改程式碼:
// src/home/controller/user.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);console.log('this is init().'); } __before() {console.log('this is __before().'); } __after() {console.log('this is __after().');return this.end(); } indexAction() {console.log('this is indexAction().'); }}// 访问 /home/user/index 的执行结果如下:// this is init().// this is __before().// this is indexAction().// this is __after().
這次 OK 了,和預期的結果一致。
我知道細心的你已經注意到有句代碼 return this.end()
從 indexAction
移動到 __after
裡面了。
this.end()
內部執行了Node.js HTTP response.end() 操作,表示整個回應流結束了,因此如果想要啟用__after
的話,這句程式碼就要放在__after
裡面運作。
這個魔術方法有點特殊,它不像前兩個魔術方法一樣用於在某個流程節點打點運行,而是分擔了init
的部分職責:用來偵測某個Controller 被存取的Action 並未定義的情況下,由__call
來接手運作。
// src/home/controller/user.js'use strict';export default class extends think.controller.base { init(...args) {super.init(...args);console.log('this is init().'); } __call() {console.log(this.http.action + 'Action is not exists.');return this.end(); } indexAction() {console.log('this is indexAction().');return this.end(); }}// 访问 /home/user/test 的执行结果如下:// this is init().// testAction is not exists.
可以看到當存取的testAction
不存在時,框架會執行__call
來處理,我們的處理是記錄錯誤並結束響應輸出。
範例程式碼是將 __call
放在了二級子類別中,通常是放在基底類別中,可以管控全部子類別的非法存取處理。
提示:本方法只能用來捕捉 Action 不存在的情況,但假如 Controller 不存在,會直接觸發 404 錯誤(被框架接管)而無法干涉。
如要捕捉 Controller 不存在的情況,需要擴展框架的錯誤類,另文描述。
thinkjs 官網API 中有實例化另外一個Controller 的接口,但是並沒有說明這個具體有什麼用途:
//实例化 home 模块下 user controllerlet instance = think.controller('user', http, 'home');
那麼通常這個方法可以用來實例化兄弟層級Controller ,或是取得資料、或觸發一個業務流程等,來看程式碼:
// src/home/controller/user.js 增加_getPoints() { return 8000;}// src/home/controller/index.jslet instance = think.controller('user', this.http, 'home');let points = instance._getPoints();console.log(points); // 打印:8000instance.indexAction(); // 与直接执行 /home/user/index 是一样的效果instance.testAction(); // 报错 [Error] TypeError: instance.testAction is not a function
可見是thinkjs 提供了一個按需實例化某個Controller 並運行其方法的途徑。
乍看之下這個方式與this.redirect
運行結果非常接近(除了不會觸發__call
的魔術方法以外),那麼thinkjs 提供這個方式有什麼用呢?來看程式碼:
// src/home/controller/util.js'use strict';export default class extends think.controller.base { calcGPSDistance(lat, lng){// 计算 GPS 两点直线距离return distance; } calcBaiduDistance(lat, lng){// 计算 百度大地坐标 两点直线距离return distance; } calcSosoDistance(lat, lng){// 计算 Soso坐标 两点直线距离return distance; }}
这是一个助手 Controller,一个“隐身”的 Controller,从 url 是无法直接访问到的,因为它的所有方法名均没有 Action 后缀。
这个场景下,运行时实例化 Controller 并操作其方法的方式就派上用场了。
控制器在实例化时,会将 http 传递进去。该 http 对象是 ThinkJS 对 req 和 res 重新包装的一个对象,而非 Node.js 内置的 http 对象。
Action 里如果想获取该对象,可以通过 this.http 来获取。
thinkjs 官网
thinkjs 框架并没有给我们准备这样一个过渡页面的功能,那么我们可以自己实现一个来练练手,上代码:
// src/common/controller/complete.js'use strict';export default class extends think.controller.base { /** * 显示中转页面 * * 调用方式: * let complete = think.controller('complete', this.http, 'common'); * return complete.display('应用新增成功!', '/', 5); * * @param msg 提示文字,支持 HTML * @param url 后续自动跳转的目标地址 * @param delay 停留秒数 * @returns {think.Promise} */ display(msg, url='', delay=3) {let tpl = 'common/complete/200';let opt = think.extend({}, {type: 'base', file_depr: '_', content_type: 'text/html'});this.fetch(tpl, {}, opt).then(content => { content = content.replace(/COMPLETE_MESSAGE/g, msg); if (url) {content = content.replace(/TARGET_URL/g, url);content = content.replace(/WAIT_SECONDS/g, delay); }; this.type(opt['content_type']); return this.end(content);}).catch(function(err){ return this.end('');}); }}
<!-- view/common/complete_200.html --><!DOCTYPE html><html><head><title>正在跳转 - 荆秀网</title></head><body><p class="header"><p class="wrap"><p class="logo"><a href="/"><img src="/static/img/logo.png" alt="XxuYou" width="60"></a></p><p class="headr"> </p></p></p><p class="wrap"><p style="margin-top:20px;height:100px;background:url(/static/img/200.gif) top center no-repeat;"></p><h1>COMPLETE_MESSAGE</h1><p class="error-msg"><pre class="brush:php;toolbar:false">提示:页面将在 <span id="_count">WAIT_SECONDS</span> 秒后重定向到 <a href="TARGET_URL">TARGET_URL</a>