معرفی شرکت ها


django-query-params-1.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A Django app providing template tags for query string management
ویژگی مقدار
سیستم عامل -
نام فایل django-query-params-1.0.0
نام django-query-params
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aidas Bendoraitis
ایمیل نویسنده aidasbend@yahoo.com
آدرس صفحه اصلی https://github.com/hyperlocalhq/django-query-params
آدرس اینترنتی https://pypi.org/project/django-query-params/
مجوز MIT license
# django-query-params Django app providing template tags and JavaScript functions for query string management. ## Template Tag Library To install the app, type: ```bash (venv)$ pip install django-query-params ``` Then add `"query_params"` to the `INSTALLED_APPS` in the settings. To use the template tags in templates: ```djangotemplate {% load query_params_tags %} {% modify_query ["only_query_string"] "param_to_remove" "another_param_to_remove" param_to_change="new-value" another_param_to_change="new-value" %} {% add_to_query ["only_query_string"] "param_to_remove" "another_param_to_remove" param_to_add="new-value" another_param_to_add="new-value" %} {% remove_from_query ["only_query_string"] "param_to_remove" another_param_to_remove="value" %} ``` ## JavaScript Library ```djangotemplate {% load static %} <script src="{% static 'query_params/js/query_params.js' %}"></script> <script> var url1 = modify_query( location, ['param_to_remove', 'another_param_to_remove'], { param_to_change: 'new-value', another_param_to_change: 'new-value' }, only_query_string=false ); var url2 = add_to_query( location, ['param_to_remove', 'another_param_to_remove'], { param_to_add: 'new-value', another_param_to_add: 'new-value' }, only_query_string=false ); var url3 = remove_from_query( location, ['param_to_remove'], { another_param_to_remove: 'value' }, only_query_string=false ); </script> ``` ## Example Let's say the current URL is: `https://example.com/posts/?page=2&sort=by-date&tag=environment&tag=sustainability` ### modify_query ```djangotemplate {% modify_query "page" tag="ecological" %} ``` will render: `/posts/?sort=by-date&amp;tag=ecological` and ```djangotemplate {% modify_query "only_query_string" "page" tag="ecological" %} ``` will render: `?sort=by-date&amp;tag=ecological` ### add_to_query ```djangotemplate {% add_to_query "page" tag="ecological" %} ``` will render: `/posts/?sort=by-date&amp;tag=ecological&amp;tag=environment&amp;tag=sustainability` and ```djangotemplate {% add_to_query "only_query_string" "page" tag="ecological" %} ``` will render: `?sort=by-date&amp;tag=ecological&amp;tag=environment&amp;tag=sustainability` ### remove_from_query ```djangotemplate {% remove_from_query "page" tag="environment" %} ``` will render: `/posts/?sort=by-date&amp;tag=sustainability` and ```djangotemplate {% remove_from_query "only_query_string" "page" tag="environment" %} ``` will render: `?sort=by-date&amp;tag=sustainability`


نیازمندی

مقدار نام
>=1.8 Django


نحوه نصب


نصب پکیج whl django-query-params-1.0.0:

    pip install django-query-params-1.0.0.whl


نصب پکیج tar.gz django-query-params-1.0.0:

    pip install django-query-params-1.0.0.tar.gz