博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pyramid学习笔记整理
阅读量:6560 次
发布时间:2019-06-24

本文共 541 字,大约阅读时间需要 1 分钟。

hot3.png

from pyramid.config import Configurator from pyramid.response import Response from pyramid.view import view_config

@view_config(route_name='test')

def string_response_adaptr(request): response = Response('

hello

') response.content_type = 'text/html' return response
if __name__ == '__main__': config = Configurator() config.add_response_adapter(string_response_adaptr)

config_add_response_adanter(string_response_adapter)的作用:调用函数名为string_response_adaptr的函数

转载于:https://my.oschina.net/u/1013711/blog/144217

你可能感兴趣的文章
MySQL 清理slowlog方法
查看>>
HTTP深入浅出 http请求
查看>>
为YUM设置代理的方法
查看>>
Java 编程的动态性 第1 部分: 类和类装入--转载
查看>>
再谈ABC
查看>>
【转】持久化消息队列之MEMCACHEQ
查看>>
Dom4j学习笔记
查看>>
C语言 HTTP上传文件-利用libcurl库上传文件
查看>>
[MEAN Stack] First API -- 7. Using Route Files to Structure Server Side API
查看>>
调试逆向分为动态分析技术和静态分析技术(转)
查看>>
Android webview使用详解
查看>>
业务对象和BAPI
查看>>
程序源系统与当前系统不一致:Carry out repairs in non-original systems only if urgent
查看>>
微软职位内部推荐-Senior Software Engineer
查看>>
程序中的魔鬼数字
查看>>
SVN高速新手教程
查看>>
session cookie
查看>>
ZBar之ZBarReaderViewController
查看>>
Nuget~管理自己的包包~丢了的包包快速恢复
查看>>
Hadoop单机模式安装-(3)安装和配置Hadoop
查看>>