O2OA API

Module

define

this.define是一个方法,您可以在流程、门户或者内容管理中创建脚本配置,在脚本配置中您可以通过this.define()来定义自己的方法。
通过这种方式定义方法,在不同的应用使用相同的方法名称也不会造成冲突。

Syntax

this.define(name, fun, overwrite)

Parameters

  • name String

    定义的方法名称。

  • fun function

    定义的方法

  • overwrite Boolean <optional>

    定义的方法是否能被覆盖重写。默认值为true。

Examples

样例:在通用脚本中定义返回当前人员名称的方法,在各个门户应用都使用这个方法显示人员名称。
1、在门户应用中有一个commonApp的应用,在该应用中创建一个脚本,命名为initScript,并定义方法。

//定义一个方法
this.define("getUserName", function(){
  return ( layout.desktop.session.user || layout.user ).name
}.bind(this))

2、在门户页面中添加事件'queryLoad',在事件中引入 initScript 脚本配置。

this.include({
     type : "portal",
     application : "commonApp",
     name : "initScript"
})

3、在门户页面的'load'事件中使用方法。

var userNameNode = this.page.get("userName").node; //获取Dom对象
var urerName = this.getUserName(); //使用initScript脚本中的方法
userNameNode.set("text", urerName ); //为DOM对象设置值

Source

results matching

    No results matching ''