All Downloads are FREE. Search and download functionalities are using the official Maven repository.

concrete.templates.jaxrs.jquery.doc.v1.module.md Maven / Gradle / Ivy

There is a newer version: 0.5.3-RC1
Show newest version

# ${module.label}

## 获得模块
<#assign insName=tool.camelCase(module.interfaceClass.simpleName)>
```javascript
var ${insName} = concrete.module(getName);
```
${module.description!""}

## 接口
<#list module.units as unit>
### <#if unit.deprecated>~~${unit.method.name}<#if unit.deprecated>~~

${unit.description!""}

```javascript
// example
${insName}.${unit.method.name}(${tool.mockParameters(unit, module)}).success(function(data) {
  // do something ..
});
```
<#escape x as x?html> 
<#assign paramCount=unit.parameters?size>
* **return:** ${tool.formatTypeStr(unit.genericReturnType, module.interfaceClass)}
* **params:** <#if (paramCount > 0)>

| paramName | label | Type                  | description |
| --------- |---- | --------------------- | ------------ |<#list unit.parameters as param>
| ${param.name} | ${param.label} | ${tool.formatTypeStr(param.genericType, module.interfaceClass)} | ${tool.tableSafe(param.description)} |<#else>NONE






© 2015 - 2025 Weber Informatics LLC | Privacy Policy