JavaScript#39;s equivalent to PHP#39;s __get() magic method(JavaScript 相当于 PHP 的 __get() 魔法方法)
问题描述
可能的重复:
所有属性的 JavaScript getter
JavaScript 是否提供访问未定义对象属性的方法?在 PHP 中,解决方案是在类中声明并实现 __get()
方法.
使用 try { .. } catch { .. }
的解决方案对我来说是不够的,因为我已经有大量的代码实际上需要保持原样.
Does JavaScript provide a method to access undefined object properties? In PHP the solution is to declare and implement __get()
method in class.
Solutions using try { .. } catch { .. }
are not sufficient for me, because I already have very large amount of code which actually needs to stay as-is.
推荐答案
您可以选择编写一个类似的功能并根据 参数 数组.我不是 100% 认为这会解决您的问题.
You may choose to write a similar functionality and check existing parameters them against the arguments array. I'm not 100% that this will solve your problem.
这篇关于JavaScript 相当于 PHP 的 __get() 魔法方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JavaScript 相当于 PHP 的 __get() 魔法方法


- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01