摘要:
Django中执行sql语句有两种方式:1.object_list=Object.raw('select top 10 from Table where a=1')如果你使用的是mysql数据库,这里就会出错,因为MySQL不支持top写法,可以换成:select * from table where a=1 limit 10Paginator(list(object_list),8)#这里需要使用list(),主要是将object_list转换为list类型。不然你会在len(object_list)的时候出错,因为object_list没有这个方法2.from django 阅读全文
摘要:
1.nginx下载地址:http://nginx.org/en/download.html2.nginx配置文件如下:#位于 /nginx/conf/nginx.conf#user nobody;worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 185; server { ... 阅读全文