V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  hobbyliu  ›  全部回复第 40 页 / 共 42 页
回复总数  831
1 ... 32  33  34  35  36  37  38  39  40  41 ... 42  
@kafka0102 咋配置?
2016-03-06 19:21:44 +08:00
回复了 ianluo 创建的主题 分享创造 Costgram 上 App Store 首页了,大家来玩玩
没有安卓版?
2015-11-30 20:54:06 +08:00
回复了 Andor_Chen 创建的主题 Java 送几本《Java 技术手册(第 6 版)》
我要一本
2015-11-11 17:55:54 +08:00
回复了 isb 创建的主题 买买买 晒晒你的双十一剁手清单
狗东 Remix 平板 + tb 12G 流量卡
2015-09-30 14:17:55 +08:00
回复了 hureatage 创建的主题 分享创造 一个小站:用你的视角,去解读互联网
不错哦
@xiaozi 在哪设置?没找到相关设置呢?
不是,我想要的东西,都是经过 js 各种规则解析出来的,没有所谓的 ajax api, 所有需要一个 webkit
@tabris17 我想要他的解析 js 供呢
2015-09-18 18:32:14 +08:00
回复了 vitovan 创建的主题 奇思妙想 spider-lang :爬虫语言,专为网络爬虫设计
求 gihub 连接
2015-09-10 16:47:14 +08:00
回复了 hobbyliu 创建的主题 程序员 postman 的跨域请求原理?
@yunfeifan postman 插件里面的一个方法, 没法发现请求域的设置呢?

``
//Send the current request
send:function (responseRawDataType ) {
pm.request.prepareForSending ();
if (pm.request.url === "") {
return;
}

var originalUrl = $('#url').val (); //Store this for saving the request
var url = pm.request.encodeUrl (pm.request.url );
var method = pm.request.method.toUpperCase ();
var originalData = pm.request.body.getData (true );

//Start setting up XHR
var xhr = new XMLHttpRequest ();
xhr.open (method, url, true ); //Open the XHR request. Will be sent later
xhr.onreadystatechange = function (event ) {
pm.request.response.load (event.target );
};

//Response raw data type is used for fetching binary responses while generating PDFs
if (!responseRawDataType ) {
responseRawDataType = "text";
}

xhr.responseType = responseRawDataType;
var headers = pm.request.getXhrHeaders (headers );
for (var i = 0; i < headers.length; i++) {
xhr.setRequestHeader (headers[i].name, headers[i].value );
}

// Prepare body
if (pm.request.isMethodWithBody (method )) {
var body = pm.request.getRequestBodyToBeSent ();
if (body === false ) {
xhr.send ();
}
else {
xhr.send (body );
}
} else {
xhr.send ();
}

pm.request.response.iframeRefreshedRecently = false;

pm.request.xhr = xhr;

//Save the request
if (pm.settings.get ("autoSaveRequest")) {
pm.history.addRequest (originalUrl,
method,
pm.request.getPackedHeaders (),
originalData,
pm.request.dataMode );
}

//Show the final UI
pm.request.updateUiPostSending ();
},
``
2015-09-10 16:09:32 +08:00
回复了 hobbyliu 创建的主题 程序员 postman 的跨域请求原理?
@yunfeifan 确实有限制,但是如何申请, header 里面 添加申请吗?
2015-08-21 13:23:32 +08:00
回复了 hobbyliu 创建的主题 职场话题 刚入职新公司,太清闲,感觉非常不适应,我该如何办?
@xxz930628 感觉自己看书,不如工作中学习来得快。
专业:数字媒体
工作:PHP
2015-07-15 23:02:36 +08:00
回复了 hobbyliu 创建的主题 问与答 ResetfulApi 规范 status_code 的一些困惑。
@leepood 不是,我记得当初的一个场景时,一个猴子为了排序3个大小不同的干果,不断的往天上抛,直到,排序正确位置,适用于少量元素排序,概率性很大。
@dallaslu 此方法,不错,忘记叫什么算法了,概率性很大。
2015-07-07 13:55:34 +08:00
回复了 hobbyliu 创建的主题 问与答 现在 996 的公司都哪些呢,请大家列举 1,2
@hanwujibaby 小米正常了吧。还996?
2015-06-19 05:37:28 +08:00
回复了 cssti 创建的主题 Vim 晒一下你最常用的 10 个 Vim 命令?
yyp
2015-06-02 14:34:33 +08:00
回复了 hobbyliu 创建的主题 问与答 laravel .env 文件的一些疑问
@fyp0414 但是他是手动吧.env 部署到生成环境的吗,这样未免太麻烦,如果有100台生产环境机器,要每台在项目放一个.env?
1 ... 32  33  34  35  36  37  38  39  40  41 ... 42  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2349 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 08:40 · PVG 16:40 · LAX 01:40 · JFK 04:40
Developed with CodeLauncher
♥ Do have faith in what you're doing.