如何用函数成功包装ajax调用的返回类型
我有一个 Web 服务,它总是从我在服务器端定义的类中带回一个对象。
在 $.ajax
函数的 success
方法中,我总是得到 this 对象。在客户端,我想添加几个函数来更快地显示其属性。
有办法做到这一点吗? (JSON对象将返回,我担心这一点)
I have a Web Service and it always brings back one object from my class that i defined on the server side.
in success
method of $.ajax
function i always get the this object. And on the client side i want to add couple of functions to display its properties quickier.
Is there a way do that ? (JSON object will return, i am worrying about that)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以扩展 javascript 对象并向其添加方法:
You can extend javascript objects and add methods to it:
正如您在关于此主题的上一个问题中已经告诉我的
如何向具有 __type 属性的 json 对象添加函数?
你想要一个全局函数。由于您仍然无法将
function
添加到json
中,因此您应该声明一个global function
,如下所示:As you already told me in your last question about this topic
how can i add a function to json object which has __type attribute?
you want to have a global functionally. Since you still can't add a
function
intojson
you should declare aglobal function
like: