问题标签 [swifty-json]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
9188 浏览

swift - Swift:如何使用库:Alamofire-SwiftyJSON

我在尝试让这个库 Alamofire-SwiftyJSON ( https://github.com/SwiftyJSON/Alamofire-SwiftyJSON ) 工作时遇到了麻烦。

我创建了一个新项目并下载了 Alamofire-SwiftyJSON 库并将所有内容拖到我的项目导航区域中。

但是,当我进入 ViewController 并添加:

我得到错误:没有这样的模块导入 AlamofireSwiftyJSON

有人可以告诉我如何手动添加这个项目。理想情况下一步一步,这样我就可以让这个代码工作:

谢谢

0 投票
2 回答
1601 浏览

json - 尝试在 iOS 7 下使用 SwiftyJSON 解析 JSON 数据时出现未知类型

我正在使用Alamofire进行网络连接,使用SwiftyJSON来解析我的 iOS 应用程序中的服务器响应。

我总是unknown在尝试这样做时得到println(JSON(data!))

这是我的请求代码:

这是我的控制台输出:

难道我做错了什么?

0 投票
1 回答
181 浏览

ios - Swift:从 SwiftyJson 结果创建结果表

我一直在玩 Swift,因为我是 iOS 开发的新手,并且非常喜欢了解这门语言。最近我开始考虑安装第三方插件等,我发现了一个名为 SwiftyJson ( https://github.com/SwiftyJSON/SwiftyJSON ) 的插件,我已经设法使用这个脚本让它工作:

我想知道两件事:1)是否可以从提供给 UITableView 的 JSON 中获取结果列表,如下所示:

等等..和2)我该怎么做?

编辑:杰森

抱歉图片 - 由于我有一个愚蠢的 chrome 扩展,我无法复制它:

在此处输入图像描述

0 投票
1 回答
1750 浏览

ios - SwiftyJSON:从 JSON 响应更新 UITableView 中的单元格

我对 iOS 开发很陌生,所以请温柔一点。

我正在为一个项目使用AlamofireSwiftyJSON库来获取和解析服务器上的 JSON 文件。我还使用本教程获得了一个带有几个单元格“单元格 1”“单元格 2”“单元格 3”的 UITableView。

使用我编写的 SwiftyJson 插件:

println() 行工作并显示正确的项目:

但是我似乎无法让他们进入牢房。

在文件的顶部,根据 UITableView 教程的说明,我有这一行:

没有错误,单元格仅保留其原始值。如何获取 JSON 响应以更新 UITableView 中的单元格?

编辑:

0 投票
1 回答
552 浏览

uitableview - How to handle ios data from API call

When i call api using Alamofire like this

And I got many json format which include {"header","body"}. Header are like this

The body string include 15 rows per page including many data like this,i gonna show you one only.

Everytime i request,it give me 15 results.All i want is to show this in table view using table cell,label and image view like this

So,any suggestion how to do that in code to create better performance.i mean do i need to store data first in some array and display them in the table view.All i need is four data from the body "vendorName,image0,mileage,modelName".So there are one image view,three labels in the table view as i show at above figure.Any Code Help and Suggestion is appreciated.

0 投票
5 回答
36720 浏览

ios - 如何使用 SwiftyJSON 遍历 JSON?

我有一个可以用 SwiftyJSON 解析的 json:

完美运行。

但我无法循环通过它。我尝试了两种方法,第一种是

XCode 不接受 for 循环声明。

第二种方法:

XCode 不接受 if 语句。

我究竟做错了什么 ?

0 投票
1 回答
310 浏览

ios - SwiftyJSON won't parse a JSON string that will later parse with no issue

I have the following PubNub delegate methods that are getting called in the exact order as declared below.

The problem is SwiftyJSON will not parse properly the string returned by willSendMessage but will parse properly the one returned by didReceiveMessage although, to my eyes, it appears that they are exactly the same. It kinda drives me crazy.

Please check the respective console output below:

What the @#$! is going on here? Please help, this will put me on meds >:|

0 投票
0 回答
246 浏览

swift - 使用 SwiftyJSON 发送 [[String:AnyObject]]

我正在使用 SwiftyJSON 请求 API。我想将值传递给 [[String: AnyObject]] 中的键:

因此,像这样直接传递它并发出请求没有响应。所以,我这样尝试:

这会导致 API 出现错误。我想我在这里做错了什么。我应该如何发送数组?

这就是我提出请求的方式。

0 投票
3 回答
8940 浏览

ios - SwiftyJSON 字典解析

我正在尝试使用 SwiftyJSON 来解析来自服务器的一些数据。

例如,假设从服务器返回的 JSON 是:

我想获取用户名字符串,因此我使用以下方法获取数据对象:

然后为了获取用户名字符串,我希望能够做到

但是,这会返回一个错误,提示“(String,JSON)没有名为“.stringValue”的成员。

这个看似简单的问题我哪里错了?

谢谢你。

0 投票
1 回答
533 浏览

ios - SwiftyJson 添加到对象/数组的末尾

我有一个代表问题和答案的 SwiftyJSON 对象,以 JSON 格式从网络服务器获取。

我想要实现的是在 SwiftyJSON 对象的末尾添加问题,假设用户错误地回答了问题。

我试过以下

但什么也没有发生。

有任何想法吗?

提前致谢