Using endpoints-proto-datastore, how do you pass attributes to a method that are not contained in the EndpointsModel
问题 I am trying to pass attributes into an API call that are not contained in my EndpointsModel. For example, say I have the following model: class MyModel(EndpointsModel): attr1 = ndb.StringProperty() Then assume I want to pass in attr2 as a parameter, but I don't want attr2 to be used as a filter nor do I want it to be stored in the model. I simply want to pass in some string, retrieve it inside of the method and use it to perform some business logic. The documentation describes the query