YUI pose传string数据在application/json格式下会失效
程序员文章站
2022-04-06 08:09:00
...
当YAHOO.util.Connect的header设置成“application/json”格式时如果post所传的是string数据,在servlet里会接受不到所传的data。
需把header设置为“application/x-www-form-urlencode”才可以传string数据
YAHOO.util.Connect.initHeader("Content-Type", "application/json; charset=utf-8", true);
需把header设置为“application/x-www-form-urlencode”才可以传string数据
YAHOO.util.Connect.initHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8", true);
下一篇: YUI学习笔记1