Odoo 中的 Controller

来自  Odoo处理HTTP请求的接口用的Contoller类,封装于web模块中。

---------------------------------------------------------------

RequestHandler:

1. replace_request_password(args):用*替换掉request中的密码字符。

2. dispatch_rpc(service_name, method, params):处理RPC请求。service_name的值可取common,db,object,report四种。

3. local_redirect(path, query=None, keep_hash=False, forward_debug=True, code=303):重定向到一个新url。

4. redirect_with_hash(url, code=303):带locathion.hash值的重定向方法。

---------------------------------------------------------------

WebRequest:

Odoo Web请求的父对象

属性:httprequest,httpresponse,httpsession,env,context,session,lang,cr,debug,registry_cr,session_id,registry,db

---------------------------------------------------------------

route装饰器:封装了处理web request路由的处理方法,被封装的方法必须为Controller的子类方法。

route(route=None, **kw):

参数说明:

route:字符或数组,映射URL中对应的路径。

type:request的类型,‘http‘或‘json‘。

auth: 认证方法,可以为以下值:‘user‘,‘admin‘,‘none‘.

methods: http请求方法,默认为都允许。(GET,POST)

cors:跨域指示值。

--------------------------------------------------------------

JsonRequest:WebRequest子类,处理JSON-RPC(http://wiki.geekdream.com/Specification/json-rpc_2.0.html)的类。

--------------------------------------------------------------

HttpRequest:WebRequest子类,处理HTTP请求并响应。

1.make_response:处理非HTML响应或自定义的headers和cookies

2.render:显示QWeb模板

3.not_found:404

例子1:自定义路径/px 返回字符串“Hello Odoo".

import openerp
from openerp import http

class px(openerp.addons.web.controllers.main.Home):

    @http.route([‘/px‘],type=‘http‘,auth=‘None‘)
    def px2(self,*args,**kargs):
        return  ‘Hello Odoo!‘

例子2:自定义路径/px 重定向到网址 bing.com

import openerp
from openerp import http
from openerp.http import local_redirect_with_hash

class px(openerp.addons.web.controllers.main.Home):

    @http.route([‘/px‘],type=‘http‘,auth=‘public‘)
    def px2(self,*args,**kargs):
        return  local_redirect_with_hash(‘http://www.bing.com‘)
时间: 2024-10-05 20:09:33

Odoo 中的 Controller的相关文章

ASP.NET MVC中 在controller 里将 Partial View 转化为字符串的方法

namespace Common.Helper { public static class ControllerExtension { //根据部分视图名称,把部分视图内容转换成字符串 public static string RenderPartialViewToString(this Controller controller, string partialViewName) { return controller.RenderPartialViewToString(partialViewN

MVC中的Controller

Controller是MVC模式中的三个核心元素之一. MVC模式中的Controller主要负责响应用户的输入, 并在响应时修改Model. MVC提供的是方法调用的结果, 而不是动态生成的页面. 下面新建一个项目名为 MVC Music Store , 以此为例说明一下MVC中的Controller. 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 u

Odoo中Qweb使用入门

参考 可参考官网例子https://doc.odoo.com/trunk/web/qweb/或 http://thierry-godin.developpez.com/openerp/tutorial-module-creation-pos-modification-english-version/ 1 Qweb官方定义 Qweb被用作OpenERP的Web客户端模板引擎.它是一种基于XML的模板语言,同Genshi, Thymeleaf.Facelets模板具有相似并且具有以下特性: 完全在客

odoo中def init(self):

# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, fields, models, tools class test_report(models.Model): _name = 'test.report' _auto = False _description = 'Test Report' test = fi

odoo中self的使用

odoo中self的使用 介绍 对象self.env提供对请求参数和其他有用的访问: self.env.cr or self._cr 是数据库的游标对象,可用于对数据库的操作 self.env.user是当前用户的记录 self.env.context或self._context是上下文字典 self.env.ref(xml_id)返回对应于XML id的记录 self.env[model_name]返回给定模型的实例 原文地址:https://www.cnblogs.com/itelephan

ODOO中创建website Part-1 创建模块

odoo是使用scaffolding来完成模块创建工作的 scaffolding 中文意思是脚手架 调用方式像这样 $ ./odoo-bin scaffold Academy my-modules odoo-bin是可执行单元 scaffold是要做的动作 academy是模块名字 my-modules是模块所在的文件夹 ps:这个文件夹在 try this odoo-bin scaffold people Peoples 如果没有任何提示,应该就是成功了 在odoo根目录下出现一个people

Angularjs 中的 controller

接触过程序开发的小伙伴们对 MVC 的开发方式想必一点也不陌生,是的, angularjs 所採用的方式便是 MVVM 的开发方式,这里的 controller 即控制器 了解 controller The ngController directive attaches a controller class to the view. This is a key aspect of how angular supports the principles behind the Model-View-

angularJS directive中的controller和link function辨析

在angularJS中,你有一系列的view,负责将数据渲染给用户:你有一些controller,负责管理$scope(view model)并且暴露相关behavior(通过$scope定义)给到view:你有一些directive,负责将user interaction和$scope behavious link起来.但是还有一样东西: a directive controller.这个directive controller子一个directive的context中定义,但是它又可以被in

springmvc项目中调用controller方法报406错误

在controller类的方法中添加了注解:@ResponseBody 网页抛出错误: The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers () 网页能够成功的调入该方法,但是返回的json结果不能正常接收,页面抛出以上错误.