+0°
2015年07月30日
⁄ fms
⁄ 共 49186字
http://blog.csdn.net/wutong_login/article/details/7819635
Streaming media over HTTP
Delivering content over HTTP is usually called “progressive download”. The content must transfer from the server to the client in a progression from the beginning to the end of a file. A client cannot seek to a forward location until that location and all the data before it has downloaded.
...
阅读全文
+0°
+0°
1、用户登录
app fontend.base.php 中login方法
$user_id = $ms->user->auth($user_name, $password);
$this->_do_login($user_id);
/* 同步登陆外部系统 */
$synlogin = $ms->user->synlogin($user_id);
function _do_log...
阅读全文
+0°
2015年07月10日
⁄ ajax&jquery&javascript
⁄ 共 1607字
$.getJSON()跨域请求
以前总是没搞明白是怎么回事,现在是迫不得已,就仔细看了看说明文档,终于测试成功了,记下:
1,同一域名下和其他的请求可以是一样的
js:
var url="http://localhost:2589/a.ashx";
$(function(){
&n...
阅读全文
+0°
+0°