var nameIndex = "name";
isSame = (obj[nameIndex] == obj.name)
以上两种方法都可以取js对象里的值
这是js取对象的值
data(){
return {
countryoption:[],
methods: {
getlinkage(pid,weizhi="countryoption") {
this.$post('partshome/wholeCountryCity', {
pid: pid,
}, this).then((res) => {
console.log(this[weizhi]) //这里可以取出上面data中 countryoption 的值
this[weizhi] = res.data; //这里可以给countryoption 赋值
}
这里是取vue对象的值,原理和js一样,毕竟是js语言
python非数值型字符串 python非整数错误
二、raise 引发一个异常例子:如果输入的数据不是整数,则引发一个ValueErrorinputValue=input("please input a int data :")
if type(inputValue)!=type(1):
raise ValueError
else:
print inputValue假设输入1.2,运行结果为:please input a int data :1.