我想查看并修改通过 changeInterceptor 中的 PUT 动词提交的信息。
例如,我可能想在更新数据源之前清除所有传入的值。
或者,也许我可以通过 java 脚本调用数据服务,而不是传入对象上的所有当前属性,而是在服务器上完成那里的值。
苏...
OnChangeMyObject<MyObject,Update...>{
if(UpdateOperations == UpdateOperations.change){
MyObject == the object to be updated but not the object passed in from the
caller. How can I access the object from the caller?
}
}