为什么我这快把取到的值放不进去这???
问题:org_type : StrType, //StrType无法把值赋给org_type
希望能解答下,我该如何,,,,,,
源码块,如下
var thorg = this.orgnizationTable
for(let index in thorg){
// thorg[index].org_type || thorg[0].org_type 都是获取到的本机机构
var type = thorg[index].org_type
let StrType = String(type) //类型分为 :0、1、2、3、4、5、6
console.log(typeof(StrType)) //string
console.log(StrType) //类型为:2
console.log(thorg[index].id) //159
const params = {
headers: { 'Authorization': sessionStorage.token, },
org_type : StrType, //StrType无法把值赋给org_type 停在这里
}
console.log(org_type) //
//通过用户编码来删除该用户的个人数据,这里用户编码做唯一标识
this.$http.post('/api/user/',params).then(res => {
let arry = []
for(let i in res.data.data) {
arry.push[res.data.data]
}
this.options = arry
}).catch(err => {
this.$message.error(err)
})
}