getattribute与getparameter
时间: 2023-05-02 19:02:32 浏览: 110
getAttribute和getParameter区别
getattribute和getParameter都是Python中常见的方法。
getattribute是一个对象方法,用于获取对象的属性值。它会在任何情况下被调用,无论属性是否存在。
而getParameter是一个Web开发中常用的方法,用于从HTTP请求中获取参数值。如果参数不存在,则返回null或None。
它们两个的作用域不同,getattribute作用于对象中的属性,而getParameter作用于HTTP请求中的参数。
阅读全文