补充部分官方文档里没有的Client Library以及代码提示Schema更新(三)

简介:
 以下是我写的Client Library,希望对大家有所帮助。


ServiceMethodRequest Class

A component designed for invoking Web Services method and retrieving the result.

Syntax

Javascript

new Sys.Net.ServiceMethodRequest();

Declarative

<serviceMethod
    aborted="event handler"
    appUrl="the url of the web application"
    completed="event handler"
    dataContext
="source for data binding operations"
    error="event handler"
    id="identifier for looking up the component by name"
    methodName="the name of the web services method"
    priority="the priority of the request"
    propertyChanged="event handler"
    timeout="event handler"
    timeoutInterval="the time to wait before failing the request"
    url="the url of the web services"
>
    <aborted>
        
<!-- actions -->
    
</aborted>
    
< bindings >
        
<!--  bindings  -->
    
</ bindings >
    <completed>
        
<!-- actions -->
    
</completed>
    <error>
        
<!-- actions -->
    
</error>
    <parameters prop1="value1" prop2="value2" ... />
    
< propertyChanged >
        
<!--  actions  -->
    
</ propertyChanged >
    <timeout>
        
<!-- actions -->
    
</timeout>
</ serviceMethod >

Script components:  required

Inherits:  Sys.Component


本文转自 jeffz 51CTO博客,原文链接:http://blog.51cto.com/jeffz/60810,如需转载请自行联系原作者

相关文章
|
8月前
|
JSON Dart 数据格式
Dart 3 Record 语法快速入门指南
学习如何使用Dart中的record类型,这种匿名、不可变的聚合类型将帮助您更高效地管理数据。
Dart 3 Record 语法快速入门指南
|
6月前
|
网络协议 Serverless Python
函数计算操作报错合集之安装ebsynth_utility插件时报错,该如何处理
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
194 1
|
Go 开发者
[Go开源工具] go-optioner:轻松生成函数选项模式代码
你是否使用过 functional options 函数选项模式?在使用时,你是否遇到过多字段的结构体而需要手动编写大量的设置选项函数的代码? 本文介绍了 go-opioner 开源工具的安装和使用,它能够根据结构体的定义,自动生成函数选项模式的代码。
144 0
ant Table表格的一些常用的小功能以及常见的报错解决方法
ant Table表格的一些常用的小功能以及常见的报错解决方法
109 0
|
Go
Go | 函数的使用细节和注意事项
Go | 函数的使用细节和注意事项
148 0
Go | 函数的使用细节和注意事项
|
JSON Go 数据格式
Go 开发常用操作技巧--map
map 是一种特殊的数据类型,它是一种元素对的无序集合,元素对为 键(key)值(value) 形式。我们可以通过 key 来快速找到与之对应的 value。
145 0
Go 开发常用操作技巧--map
【GO】自定义包引用解决方案
【GO】自定义包引用解决方案
118 0
【GO】自定义包引用解决方案
|
JSON API 数据格式
Python 库引用提示:name ‘json‘ is not defined. 问题解决办法
Python 库引用提示:name ‘json‘ is not defined. 问题解决办法
1114 0
Python 库引用提示:name ‘json‘ is not defined. 问题解决办法
|
Python
Python 语法问题-module ‘pip._internal‘ has no attribute ‘pep425tags‘. 原因及解决办法,32位、64位查看pip支持万能方法
Python 语法问题-module ‘pip._internal‘ has no attribute ‘pep425tags‘. 原因及解决办法,32位、64位查看pip支持万能方法
450 0
Python 语法问题-module ‘pip._internal‘ has no attribute ‘pep425tags‘. 原因及解决办法,32位、64位查看pip支持万能方法
|
文件存储 图形学
Unity3D 2018版本 Post Process 后期处理插件使用介绍
Post-processing是将全屏的滤镜和特效应用于摄像机的图像缓冲区,然后渲染在屏幕上的过程。只需要花费较少的时间进行设置,就可以大大提高产品的视觉效果。
Unity3D 2018版本 Post Process 后期处理插件使用介绍