将字母转化为对应的 a->1,b->2,c->3......

    let aa = this.resource.answer.split("").map(function(o){
        return o.toUpperCase().charCodeAt()-64;
    }).join("");