0
我想檢查此選項中的緩存參數。參數檢查函數使用鏈接方法
所以如果param被包含並且是真的,那麼.use會設置no_cache - 其他的不會。
My.function = function (data, callback, cache) {
return this.client.request("patch", this.uri())
.use(no_cache)
.send(data)
.end(utils.easy(callback));
};
這樣做的最佳方法是什麼?