这个是在postman上测试的可以返回结果
这个是直接在页面访问也可以返回结果,这是没有加header直接访问返回的error
但是在html用ajax访问就会报404
这是ajax请求的代码
$.ajax({
url:`https://voice.lenovomm.com/lasf/cloudtts`,
type:'get',
header:{
'channel': 'cloudasr',
'lenovokey':lenkey,
'secretkey': secrkey
},
data:{
text:'我是老实人',
user:'10140802691'
},
success:function(data,status,xhr){
console.log(data)
},
error:function(e){
console.log(e)
}
})
content-type设置一下 瞅瞅