我问自己哪种方式可以访问网络应用程序中的setter。
基本示例:
这里开始提出问题,提供此问题的最佳方式是什么。
我通常使用的方法是编写一个服务类,在每个方法中调用它。 例如:
public function changePropertyAction ($bandname)
{
if(!BandAuthService::isBandMember($bandname)) {
// redirect
}
// change the property to a new one
}
public function changeAnotherPropertyAction($foo)
{
if(!FooAuthService::isFooMember($foo)) {
// redirect again
}
}
还有另一种方式,用户在此操作中调用的每个操作,系统都必须检查它是否是乐队成员?