api.js 275 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 var $ = require('yoho-jquery'); require('../../common/promise'); exports.check = function(captcha) { return $.post('/3party/check', { verifyCode: captcha }).then(function(result) { if (result.code !== 200) { } else { } }); };