You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the @db_write decorator, I can specify views that change the database although they're GET. What about the opposite? There are POST requests that don't change the database; login is a typical example. There are also POST requests that do change the database, but the change is not so important to be viewed immediately; a possible example is clicking on a "like" button.
See also #7 about alternative implementation ways.
The text was updated successfully, but these errors were encountered:
Using the
@db_write
decorator, I can specify views that change the database although they're GET. What about the opposite? There are POST requests that don't change the database; login is a typical example. There are also POST requests that do change the database, but the change is not so important to be viewed immediately; a possible example is clicking on a "like" button.See also #7 about alternative implementation ways.
The text was updated successfully, but these errors were encountered: