由买买提看人间百态

topics

全部话题 - 话题: ajax
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
r****y
发帖数: 26819
1
来自主题: DotNet版 - ajax,json,jquery怎么自学?
我感觉单纯的jquery,ajax都不难学,现在是用mvc模式的javascript把这些东西串起
来。
推荐书的话,还是javascript的书,但又好像不是你原本想要的。
m********l
发帖数: 791
2
来自主题: DotNet版 - ajax,json,jquery怎么自学?
我1个月前刚刚开始接触这些javascript, ajax, jquery这些,因为项目需要.
学习的话
javascript 就推荐MDN的docs吧,非常的全,我凡是没见过的method往上面一搜就有很
全的解释。
jQuery那必然就是官网的documentation了,非常的全面。每个method都有对应的解释
和例子
我觉得jquery是个很强大的框架,各种各样网上的plugins可以帮你实现很fancy的界面
和dynamic的效果。learning curve也相对较短。但是plugins用多的结果是 你其实还
是对javascript没有深入的了解
然后就是css,设计好的css很难。往往为了保证components之间没有冲突,你就会有大
把的时间花在css上。
我觉得学习web dev 语言跟其他语言一样,也是博大精深。都是要大量的看代码 写代
码才会有提高。这行也看经验的。
b****n
发帖数: 18
3
来自主题: DotNet版 - ajax,json,jquery怎么自学?
jquery, 有个印度人写的《Jquery recipes - a problem-solution approach》,看一
遍基本功能都有了,用的时候再去官网上查文档。
jquery 中已经对json, ajax都做了包装,直接用就可以了。
w*******7
发帖数: 188
4
来自主题: DotNet版 - 如何用ajax实现comments update
例如cnn新闻用的comments,当到达底部,按下link,自动添加旧的评论.觉得应该是用
ajax做得(或是knockout.js?)
如何在mvc的view里实现?
w*******7
发帖数: 188
5
来自主题: DotNet版 - 如何用ajax实现comments update
我可用ajax.beginform 和AjaxOptions实现update第2页.
但如何改变page=3,4,5,6,....
AjaxOptions ajaxOpts = new AjaxOptions
{
UpdateTargetId = "result",
Url=Url.Action("Commen/Commentlist", new{blogId=@
Model.BlogId, page
=2})
....}
f***o
发帖数: 14
6
来自主题: Internet版 - Ajax
有没有喜欢讨论技术的朋友?尤其是现在正火的Ajax.
f***o
发帖数: 14
7
来自主题: Internet版 - Ajax
这我当然知道.问题是写起来有多麻烦,有没有什么优点.
建议读读"Ajax的七宗罪" (Google it).最好的总结.
o***g
发帖数: 2784
8
ajax是个啥玩艺?
g***r
发帖数: 32
9
i am playing with ibm ajax toolkit.
g**********y
发帖数: 14569
10
Anyone has good AJAX or javascript forum to recommend?
I just tried jGuru, horrible interface.
Anyone can explain following problem is also appreciated -->
1.
2. document.getElementById("MyButton").onclick = highlight;
In my view, Method-1 and Method-2 are interchangeable. However, browser
doesn't think so -->
function highlight() {
alert(this.id);
}
Method-1 set this to window; and Method-2 set this to MyButton. Why is that?
I thin
g**********y
发帖数: 14569
11
Never mind my second question, find the answer in AJAX in action.
A simple javascript code could hide so many default information, that's
really bad, and sad for programmer.
h**d
发帖数: 474
12
来自主题: Java版 - AJAX framework for Java
I used DWR a while ago...It has spring integration,
as well as reverse ajax functionality. But it's difficult to unit test it,
since all the java code in DWR is static call.
Dojo, Scriptaculous are very popular
One of my colleages suggested Prototype to me...It's very light weight, but
I never tried it before
g*****g
发帖数: 34805
13
I choose AjaxTags in wish to avoid js programming all together.
Start with an autocomplete.
It took me couple of hours to make all the settings right in my
Spring application, and couple of more hours to make the calls
all the way to DB.
So at the end of the day, Ajax rocks. But I feel the limit of
AjaxTags immediately, it can do certain things, but it's not clear
how you can customize it. e.g. I want to type several emails in
the TO field, and the autocomplete only takes the entire textfield
to
p********f
发帖数: 787
f*****e
发帖数: 57
15
I am in the transition of c++ to java, and my boss has been encouraging me
to buy books. I have some basic java books like "Thinking in Java", and the
head First series. Now I am ready to look deeper into the java world.
Please recommend some books on the following subjects:
- Ajax
- Web2.0
- Spring
- Hibernate
- Web Services with jee technology
- BPEL
Thanks in advance.
g*****g
发帖数: 34805
16
For spring and hibernate, the "in action" series is pretty good.
Also the "pro" series.
For web service, Axis and XFire are hot, check their websites to
see if you can get any books.
For ajax, there are different approaches, client package (e.g. YUI),
server side framework (DWR), and some full fledged one (GWT). It all
depends on what kind of application you are working on.
Can't comment on BPEL.
JEE is too big a topic, it's probably get dirty first and read what you need,
rather than read a ton
T*o
发帖数: 363
17
静态的只会html,css
server side只会点php,就是典型的LAMP。
J2EE只按照教程做过,还没做过实际的大型项目,现在想好好钻研下web application
javascript和ajax有必要学吗,好不好学?
t*******e
发帖数: 684
18
有web designer设计网页的话,就不需要学。没有的话可以学点,也可以用ajax
frameworks, 比如Zk, echo, GWT.
T*o
发帖数: 363
19
纯粹自学,所以想把有用的知识学习一下。
ajax在web app里真很重要的话,就打算好好学学。
g*****g
发帖数: 34805
20
Wicket, you can do traditional page based development, or more
RIA type single page development. Easy to create custom reusable
component. Best choice if you are looking for gradual ajax adoption.
k***r
发帖数: 4260
21
Yeah, thanks. I have been checking it out. Haven't got a chance
to code anything yet.
While reading the samples, the amount of typing you have to
do to implement some simple things such as "Hello World" looks
intimidating ... this is no surprise for someone coming from
the world of Python web frameworks, though. App class, page
class, page template, web.xml...
I find it especially awkward to add ajax callback. But I'm sure
this also has something to do with the fact that I'm not used
to the way
t*******e
发帖数: 684
22
I would classify websites in a little different way,
HTML/JavaScript centric
Conventional web frameworks for page-by-page navigation, Ajax frameworks
with HTML abstraction, typically delivering single page websites.
non HTML category
Flash/Flex, Silverlight, JavaFX
t*******e
发帖数: 684
23
最近自己写了个的vaadin portlet, 刚搞到了liferay上面. 感觉UI开发还是很方便,
vaadin
custom theme和IPC很好写也, 就等Spring3.1 release with conversation support.
摩拳擦掌要开发Vaadin+Spring+JPA的项目. 突然发现支持JSF2.0的Ajax libraries有
好几个
了. 看上去也很不错, 大家可以看看, http://openfaces.org">OpenFaces,
http://www.primefaces.org/">PrimeFaces, href="http://www.icefaces.org">IceFaces, href="http://jboss.org/richfaces">RichFaces. 据说PrimeFaces最好.
p*****2
发帖数: 21240
24
现在是不是想开发纯ajax的还是比较难?
s****s
发帖数: 628
25
你现在怎么什么都想学?
ajax能单独存在吗?
c*********e
发帖数: 16335
26
ajax和jquery,javascript一個级别的,小打小闹的东西。
w****u
发帖数: 3147
27
用jquery的js framework可以减少很多错误
感觉就是调试ajax比较麻烦……
one page 感觉很方便,呵呵……因为不用考虑太多page的forward和backward造成的影
响。
c*********e
发帖数: 16335
28
ajax不就是request.之类的吗,很容易的啊。
c*********e
发帖数: 16335
29
来自主题: Java版 - 纯ajax网站和sevlet优劣是啥
struts沒有servlet灵活。ajax只是动态更新网页的某一個部分,而且用戶感觉不到网
页刷新。

劣?
s******e
发帖数: 493
30
来自主题: Java版 - 纯ajax网站和sevlet优劣是啥
Yes. you should be fine by either way.
But before you choose between them, you might want to ask yourself some
questions:
1. do you need to keep states on the server side? For example http session..
. Web service by nature is stateless. You can make it stateful, but that
will imply the extra works on both client and server sides. On the other
hand, servlet/jsp automatically support states via http session.
2. Do you need to do the whole page navigation a lot? Ajax was introduced to
update a html... 阅读全帖
l******t
发帖数: 660
31
来自主题: Programming版 - 在带有ajax的页面做screen scrape
不知道哪位大牛做过带有ajax的页面的screen scrape, 这类页面会动态更新, 直接用
webrequest不行, 如果这这方面的资料请指导一下.
N********n
发帖数: 8363
32
来自主题: Programming版 - 重提AJAX和RIA坑

RIA 是趋势。HTML是DOCUMENT界面,做BLOG网页可以,做大型应用很别扭。
JS也不是金刚钻,烂泥巴一块而已。我在FIREFOX里面用GMAIL,INBOX的
REFRESH用一阵就失效,这还是最好的AJAX组合,基本功尚不过关,现有的
Desktop Email Client都没有这个问题。
说到底BROWSER是个搜索、浏览工具。硬要做个APP FRAMEWORD出来是牵强附
会。JAVAFX有个理念很好:上网去搜索JAVAFX APP,找到一个合适的可以拖
拽到桌面上。以后再用直接点击桌面图标就可以了,不必进入浏览器,当然
CLIENT端要装个JAVA ENV。这种LAYERED APPROACH很MAKE SENSE。BROWSER
的分工就是搜索,找到一个APP后要么交给PLUG-IN、要么下载到桌面再执行。
BROWSER不必插手。
当前的运算体系结构是CPU / CACHE / MEMORY / HARD DRIVE。BROADBAND以
后越做越大,INTERNET很可能就成为HARD-DRIVE下面又一层 LAYER。BROWSER
负责搜索这一层就可以
m******t
发帖数: 2416
33
来自主题: Programming版 - 重提AJAX和RIA坑
I said this before (last time somebody dug this pit),
and I'll say it again: it's a pseudo debate about whether
AJAX or RIA will win. They both have pros and cons for
different types of applications.

Video
s*i
发帖数: 388
34
来自主题: Programming版 - ajax也能做这么fancy的网游!
最近看到很多朋友在玩“仙域”,用firebug抓了以下包,惊叹居然不是用flash作的,
而是用ajax作的。。。。。
效果已经可以和仙剑1,2的效果媲美了,当然现在还没有成熟的web 3d engine, (不
要跟我提html5)。。。
对这个技术很感兴趣,哪位可以提供一些入门的开发教程?
i*****o
发帖数: 1714
35
来自主题: Programming版 - 想在apache上面做一个支持ajax的server
怎么把node放到apache的后面?lz问的是怎么让apache支持ajax。

★ 发自iPhone App: ChineseWeb - 中文网站浏览器
c*****a
发帖数: 1638
36
后台是java导出接口,前台因为某些原因必须用HTML+AJAX+JSON
我没搞过这种东西,问一下现在这种集成方案下啥library或者framework最好/流行?
jquery?还是有更cool更好用的
对并发和性能没有需求,对异步要求相对高,但是主要是要节约开发时间和提高效率
或者有人自告奋勇,我们在纽约金融区,可以招4-6个月的contractor,W2或者1099都
行,价格可以商量应该不算差,但不会support身份。这个可能会成为一个永久职位,
但是现在不能承诺这点(但是可以成为长期contractor,我觉得可能性比较高)。猎头
就不必了。
BTW:一个上市公司,也有小几十亿刀市值,不是皮包公司。
e*******o
发帖数: 4654
37
他的意思是应该msg 不显示。
这个是php返回值的的问题。
to lz,debug下php 的返回值。
你为啥把async 弄成false? 你末尾那个responseText 也有问题。没见过这种写法。
这里有例子,你比着规范一下。
搜jquery文档。 写全网站会删帖。
ajax
ps:你可以直接用post,多省事。
jQuery.post
你那个str 也不对,action那部分不要。只有后面的参数部分。最好直接用object,让
jquery做剩下的。
我自己也是半瓶错,看了我以前的code才发现。
n*****t
发帖数: 22014
38
var p4d2s3 = 2;
var p4d2s5 = 4;
var data = { action : 'getJasonData', XID : p4d2s3, CName : p4d2s5 }
var area_json = $.ajax({ url : 'get_area_data.php', dataType : 'json', async
: false, data : data }).responseJSON;
n*****t
发帖数: 22014
c********1
发帖数: 5269
40
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
angular($http) supports ajax.
n*****t
发帖数: 22014
41
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
Morden web app 几乎一定用 ajax,不管穿的是什么马甲。这东西本身没多少需要学习
的,基本原理知道就可以了,无非 api 有点不一样。
p*******n
发帖数: 2697
42
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
不是大牛,我的理解是这样的: restful api主要使用方式就是http的四个method,
get post put delete;
ajax最核心的用途是client side一个异步http method call,来使用restful api的。
n*****t
发帖数: 22014
43
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
其实这也不解决问题,现在很多时候页面靠 angular 之类填入数据后生成,你访问这
个页面不跑 js 只能得到一个 template。不过我估计很快或者已经有轮子在搞这个了
,哪位大仙知道的话出来忽悠一个呗?
我现在的做法是看到 bot 送出一个缓存好的简化页面,去掉各种 fancy 东西,有
keywords 就行。

ajax
j****8
发帖数: 184
44
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
主流wep app还是基于ajax的吧,不过确实开始过时了,现在的潮流是用fetch

还是还在用,不过是换了说法?和目前流行的restful frame什么关系? 谢谢。
n*****t
发帖数: 22014
45
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
我认为他说的是 ajax 的一件马甲
s*****r
发帖数: 43070
46
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
就是个ajax的wrapper吧
m***i
发帖数: 2480
47
来自主题: Programming版 - 请问大牛,ajax这个东东过时了吗?
我印象中ajax就指xhr。你哪个JavaScript framework不用它?
d*****r
发帖数: 39446
48
【此篇文章是由自动发信系统所张贴】
ajax 申请加入本俱乐部的请求已经通过审批, 成为本俱乐部的正式成员, 特此通知.
h*h
发帖数: 27852
49
来自主题: Soccer版 - 看看荷兰是怎么培养球星的
summary:
从小培养,以培养基本足球技术为主,少打比赛也不在乎比赛成绩,通过出卖成品青年
球星赚钱
How a Soccer Star Is Made
The youth academy of the famed dutch soccer club Ajax is grandiosely called
De Toekomst — The Future. Set down beside a highway in an unprepossessing
district of Amsterdam, it consists of eight well-kept playing fields and a
two-story building that houses locker rooms, classrooms, workout facilities
and offices for coaches and sports scientists. In an airy cafe and bar,
players are served meals and visitors can have a... 阅读全帖
c***r
发帖数: 4631
50
土人俺本来在leisuretime版回了些帖,觉得可以总结起来,另外开一个贴了。发在这
儿。
http://www.mitbbs.com/article_t1/LeisureTime/1735253_0_1.html
*******分割线********
找点乐子借本帖积攒一下各个名字的来历?
我先贡献两个。
Hermione 这个名字来自古希腊神话,是斯巴达的公主,传说她妈海伦跟特洛伊的王子
Paris私奔了,他爹纠集了一帮英雄好汉渡海去围攻特洛伊,双方大战十年死伤无数,
最后放木马焚城……然后hermione她爹妈和好如初……好像跑题了。
Minerva这个名字来自罗马的知识,魔法,医药,商业和防御女神,和希腊的雅典娜是
一个神。如下图为美国国会图书馆的Minerva画像。
Minerva或者athena出现的时候会有一只“猫头鹰”,一根长矛,一个头盔,Aegis(包
括一个用蛇发女妖的头装饰的盾牌和(或)一个用蛇发女妖的头装饰的兽皮甲)和胜利女
神Nike。实际上Minerva这个名字一出现,结局就已经暴漏了。
土人俺来分析一下Harry Potter, Ron Weasley和... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)