- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在开发 Android 网络应用程序。当我使用简单的 HttpPost 方法调用 Web 服务时。网址在哪里
http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039&folderName=issue&parentFolder=0
使用简单的 http
String url = "http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?
userID=2039&folderName=issue&parentFolder=0"
HttpPost post = new HttpPost(url);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(post);
HttpEntity entity = response.getEntity();
responseText = EntityUtils.toString(entity);
使用此 Http 方法一切正常。
但是当我尝试使用 Ion 执行此操作时安卓库。使用以下代码。
Ion.with(context)
.load("POST", "http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder")
.setLogging("LOG-POST",Log.VERBOSE)
.setHeader("Content-Type","application/json")
.setBodyParameter("userID","2039")
.setBodyParameter("folderName","TEST post")
.setBodyParameter("parentFolder","0")
.asString()
.setCallback(new FutureCallback<String>() {
@Override
public void onCompleted(Exception e, String result) {
if (e != null) {
Toast.makeText(context, "Error downloading file", Toast.LENGTH_LONG).show();
return;
}
Toast.makeText(context, "Download completed", Toast.LENGTH_LONG).show();
Log.d("RESULT",result);
}
});
它返回以下消息。
{"Message":"No HTTP resource was found that matches the request URI 'http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder'."}
我在 Ion 的官方 github 存储库上阅读了很多问题。并尝试了几乎解决方案,但仍然没有解决错误。
这里有什么问题吗?
更新代码:
JsonObject json = new JsonObject();
json.addProperty("userID","2039");
json.addProperty("folderName","temp0011");
json.addProperty("parentFolder","0");
Ion.with(context)
.load("POST", "http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder")
.setLogging("ion-geny",Log.DEBUG)
.setHeader("Content-Type","application/json")
.setHeader("Cache-Control","no-cache")
.setJsonObjectBody(json)
.asString()
.setCallback(new FutureCallback<String>() {
@Override
public void onCompleted(Exception e, String result) {
if (e != null){
Log.e("Error Result", e.toString());
}
Log.d("Result", result);
}
});
日志:
D/ion-geny﹕ (0 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: preparing request
D/ion-geny﹕ (0 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: preparing request
I/ion-geny﹕ (0 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: Using loader: com.koushikdutta.ion.loader.HttpLoader@42656120
D/ion-geny﹕ (0 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: Executing request.
D/ion-geny﹕ (6611 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: Response is not cacheable
D/ion-geny﹕ (6615 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: Connection successful
D/ion-geny﹕ (8592 ms) http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039: Recycling keep-alive socket
响应:
{"Message":"No HTTP resource was found that matches the request URI 'http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?userID=2039'."}
最佳答案
问题出在网络服务中的主体参数上。它接受整个作为 QueryString。并且需要设置 HttpHeader "Content-Length = 0"。下面是我更改的代码。
Ion.with(context)
.load("POST", "http://xxx.xx.xxx.xxx/api/UploadFile/InsertFolder?
userID=2039&folderName=temp0011&parentFolder=0")
.setLogging("ion-geny",Log.DEBUG)
.setHeader("Content-Length","0")
.asString()
.setCallback(new FutureCallback<String>() {
@Override
public void onCompleted(Exception e, String result) {
if (e != null) {
Log.e("Error Result", e.toString());
}
Log.d("Result", result);
}
});
它现在正在工作。
关于android - 使用 Ion android 网络库的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29210988/
ionic 4: 我在标签中有一张图片和一个标签,我希望它们并排出现在中央。 HTML:
使用 ionic v3 开发混合应用程序,我在使用 *ngFor 生成的 ionic 列表中有 ionic 项。问题出在 iOS 设备上,即我无法滚动在 y 方向溢出的 ionic 列表。但是安卓设备
我遇到了 ion-item 背景颜色的问题。 我想要什么: 将背景颜色设置为透明。 我有什么: Remember me! 这会生成一个 背景为白色。 我尝试做的事情: 应用程序组
我正在尝试通过 JS 为我的 ionic 输入元素分配一个值。这是我的代码: HTML: JavaScript: function onSuccess(position) { var
完成一些教程后,我开始使用我自己的 Ionic 应用程序。我开始使用 ionic 的空白模板。我的问题是我的 ion-view(在 cards.js 中,见下文)根本没有出现在 ion-nav-vie
我正在开发一个应用程序,我正在从 JSON 获取数据并且它运行良好,但我的问题是我不知道如何使用指令使用 CSS 样式。下面我展示了代码。第二段代码是css起作用的代码。
我正在使用具有动态值的 ion-radio ,并且需要将第一个值设置为使用 react 形式选择的值。 Type
Atualizado em: {{ultimaAtualizacao | date:'dd/MM/yyyy'}} 我想改变 ion-title 的文字大小,我已经尝试过使用 css,但它没有
我的 ion-content 中有两个输入字段,它们都附加了一个 ng-model。然后在我的 ion-footer 中有一个 ng-click,我在其中调用一个函数并传入两个 ng-models。
我正在基于 ionic 框架构建 phonegap 应用程序。在一个 html 页面中,我需要一个标题和一个内容。但是标题与内容重叠。抱歉,我没有足够的声誉来发布图像。 代码如下。 html 页面与
我尝试了多种方法: 设置内联样式,但看起来 @ionic 在生成 toast 时删除了 style="...." 属性 CSS 变量,但不知道如何设置不公开 api( ionic 图标)的嵌套阴影元素
我目前正在开发 Ionic 应用程序并坚持在 ion-header 和 ion-content 中实现图像。 这是我如何实现的屏幕截图。 从截图中可以看出, ionic 标题和 ion-content
我是ionic的新手,我想上传图片,因此我使用“ng-file-upload”上传我的图片。 但代码仅在我删除“ ion-content ”时才起作用。我的模板是:
我想删除调用 ion-select 时生成的 ion-radio(带有弹出界面) Popover Brown Blonde Black
我想删除调用 ion-select 时生成的 ion-radio(带有弹出界面) Popover Brown Blonde Black
我的 View 如下图所示: 我希望视频容器不可滚动(静态),但视频容器下的列表应该是可滚动的。 请问我如何在 Ionic 框架中做到这一点? 我尝试将绝对位置设置为视频容器并将列表放在容器上方。但如
我确定可能有一种方法可以全面覆盖字体颜色,但我不确定语法 - 我想它在 scss 文件中很容易实现 - 有什么想法吗? 最佳答案 在CSS中使用它 *{ color:#123456; } 将C
我想在更改 ionic 选项时传递员工 ID。我试过这个,但它不起作用,如果有任何错误,请告诉我 这是我的代码: Employee {{ employee.FirstName + " " +
到目前为止,我有一个非常简单的应用程序,但我不知道如何修复内容的重叠(内容顶部的标题)。我创建了一个组件 header顾名思义,它包含标题。 header.html
如标题所述,我正在尝试从 $http 请求分配一个列表,然后在 View 中查看该列表。 我认为问题是 View 在数据加载之前显示,如果我理解正确的话。当变量改变时, View 永远不会更新。 有人
我是一名优秀的程序员,十分优秀!