< H2 > Code in tool js < / H2 >
this.upload = function (url, callback) {
$.ajax({
// code
},
success: function (res) {
callback(res)
},
error: function (err) {
console.log(err)
}
}
< H2 > Code in Vue < / H2 >
uploadAudio () {
recorder.upload("hello world", function (res) {
this.recorderText = res.data
console.log(res.data)
})
},