- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试构建一个简单的 WebApi 服务,该服务将实时返回帖子的评论。所以该服务只实现了 Get 方法,它是一个简单的返回 IEnumerable 的字符串,用于传递的帖子 ID:
public class CommentApiController : ApiController
{
// GET api/<controller>
public IEnumerable<string> Get(int id)
{
return new ApplicationDbContext().Posts.First(x => x.PostId == id).CommentId.Select(x => x.CommentText).ToList();
}
// POST api/<controller>
public void Post([FromBody]string value)
{
}
// PUT api/<controller>/5
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/<controller>/5
public void Delete(int id)
{
}
}
我也制作了 WebApiConfig 类并指定了如下路由:
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
在我的 Global.asax.cs 文件中,我添加了该路由的引用:
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
在简单的部分 View 中,我试图每 8 秒调用一次此服务,这样帖子的评论就可以自己显示,而无需刷新页面,以检查是否有其他用户对帖子发表了评论。
@model List<StudentBookProject.Models.Post>
<table class="table table-striped">
@foreach (var item in Model)
{
if (item.ImagePost != null)
{
<tr class="info">
<td>@item.CurrentDate</td>
</tr>
<tr class="info">
<td>
|@Html.ActionLink("Delete", "Delete", new { id = item.PostId }) |
@Html.ActionLink("Comment", "AddComment", new { id = item.PostId }, new { @class = "comment" }) |
</td>
</tr>
<tr class="info">
<td>
<img src="data:image/png;base64,@Convert.ToBase64String(item.ImagePost, 0, item.ImagePost.Length)" width="620" />
</td>
</tr>
<tr>
<td>
@Html.Partial("~/Views/Posts/ListComment.cshtml", item.CommentId)
</td>
</tr>
}
if (item.FilePost != null)
{
<tr class="info">
<td>@item.CurrentDate</td>
</tr>
<tr class="info">
<td>
| @Html.ActionLink("Delete", "Delete", new { id = item.PostId }) |
@Html.ActionLink("Comment", "AddComment", new { id = item.PostId }, new { @class = "comment" }) |
</td>
</tr>
<tr class="info">
<td>
File attachment
</td>
</tr>
}
if (item.TextPost != "")
{
<tr class="info">
<td>@item.CurrentDate</td>
</tr>
<tr class="info">
<td>
| @Html.ActionLink("Edit", "Edit", new { id = item.PostId }, new { @class = "lnkEdit" }) |
@Html.ActionLink("Delete", "Delete", new { id = item.PostId }) |
@Html.ActionLink("Comment", "AddComment", new { id = item.PostId }, new { @class = "comment" }) |
</td>
</tr>
<tr class="info">
<td>
@item.TextPost
</td>
</tr>
}
}
</table>
@{
int i = 0;
while (i < Model.Count())
{
if (Model[i].ImagePost != null || Model[i].TextPost != null || Model[i].FilePost != null)
{
<script>
$(document).ready(function () {
var showAllComments = function () {
$.ajax({
url: "/api/CommentApi/" + "@Model[i].PostId.ToString()"
}).done(function (data) {
var html = "";
for (item in data) {
html += '<div>' + data[item] + '</div>';
}
var divID = "@("quote" + Model[i].PostId.ToString())"
$('#' + divID).html(html);
setInterval(function () {
showAllComments();
}, 8000);
});
};
})
</script>
}
++i;
}
}
我的服务没有被调用,至少没有以正确的方式调用,导致新评论仅在刷新页面后显示。我知道 WebApi,尤其是在这种情况下应该很容易实现并且非常简单,但我对这项技术完全陌生,我不知道我错过了什么或错误地实现了什么。一直试图找到一些合适的教程来帮助我解决这个问题,但还没有任何帮助。
我在某处读到我应该在 WebDAV 的 Web.config 文件中添加一行,但这对我也没有帮助。
<handlers>
<remove name="WebDAV"/>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
是否有人看到我没有做的事情以及可能在哪里出错?另外,有人知道一些不错的 .NET WebApi 教程吗?
附言当我使用以下方法直接从浏览器调用 WebApi Get 方法时: .../api/CommentApi/id 路由服务被调用并为传递的帖子 ID 返回评论,所以服务没问题,我不是在调用它以一种好的方式编写代码...
最佳答案
首先,正如您自己所说,当您在浏览器中键入 URL 并按下回车键时,您会收到来自 Web API 的响应:这意味着 Web API 服务和服务器已正确配置。所以你的问题与配置无关:问题出在请求本身。
要使请求生效,它必须是一个 GET 请求,指向正确的 URL,并带有正确的参数。
您的路线模板看起来像这样 routeTemplate: "api/{controller}/{id}"
带有可选的 id
。您的方法是 get 方法。在这种方法中,参数可以从路由(模板中的 {id}
段)或查询字符串中恢复,即:
获取 api/CommentApi/5
GET api/CommentApi?id=5
您可以使用这些 URL 中的任何一个。
Web API 可以返回两种不同格式的数据,XML 或 JSON。如果您未指定任何内容,返回的数据将采用 XML 格式(这就是您在浏览器中键入 URL 时得到的结果)。如果您更喜欢 JSON,它是在这种情况下,您需要在请求中添加 header :Accept: application/json
注意:指定 Content-Type
没有意义,因为您不能在 GET 请求中发送负载(正文中的数据)
从 Web API 服务中的 GET 方法获取数据的最简单方法是使用 jQuery .getJSON .如果您查看文档,您会发现此方法等同于
$.ajax({
dataType: "json",
url: url,
data: data,
success: success
});
而且,如果您阅读了有关 .ajax()
的文档,您就会明白指定 dataType: "json"
等同于包含 header Accept:application/json
,要求Web API返回JSON数据。您还会了解到默认方法是 GET。因此,您必须确保的唯一另一件事是 URL 看起来符合预期。查看getJSON
的签名:jQuery.getJSON( url [, data ] [, success ] )
它需要一个 URL 和可选的数据以及一个成功回调。我建议不要使用回调,所以让我们看看发出请求的 2 个可能选项:
$.getJSON('/api/CommentApi/'+id)
将呈现类似 /api/CommentApi/5
的 URL(未指定数据)<$.getJSON('/api/CommentApi',{id:5})
会呈现一个类似 /api/CommentApi?id=5
的 URL(数据指定为 JavaScript 对象,属性名称类似于操作的参数名称:在本例中为 id
)我建议不要使用 success
回调,而是使用 promise .done
方法。因此,无论您使用哪种语法进行调用,都必须像这样推迟 .done
(就像您在原始代码中所做的那样):
$.getJSON('/api/CommentApi/'+id).done(function(response) {
// use here the response
});
所以,修改后的 showAllComments
方法看起来像这样
请特别注意评论
var showAllComments = function () {
$.getJSON("/api/CommentApi/" + "@Model[i].PostId.ToString()")
.done(function (data) {
// create empty jQuery div
var $html = $('<div>');
// Fill the empty div with inner divs with the returned data
for (item in data) {
// using .text() is safer: if you include special symbols
// like < or > using .html() would break the HTML of the page
$html.append($('<div>').text(data[item]));
}
// Transfer the inner divs to the container div
var divID = "@("quote" + Model[i].PostId.ToString())";
$('#' + divID).html($html.children());
// recursive call to the same function, to keep refreshing
// you can refer to it by name, don't need to call it in a closure
// IMPORTANT: use setTimeout, not setInterval, as
// setInterval would call the function every 8 seconds!!
// So, in each execution of this method you'd bee asking to repeat
// the query every 8 seconds, and would get plenty of requests!!
// setTimeout calls it 8 seconds after getting each response,
// only once!!
setTimeout(showAllComments, 8000);
}).fail(function() {
// in case the request fails, do also trigger it again in seconds!
setTimeout(showAllComments, 8000);
});
};
关于c# - 使用 jQuery 在 ASP.NET MVC 5 应用程序中调用 Web API 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28083791/
在带有 jQuery 的 CoffeeScript 中,以下语句有什么区别吗? jQuery ($) -> jQuery -> $ - > 最佳答案 第一个与其他两个不同,就像在纯 JavaScr
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭13 年前。 Improve th
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
这个问题可能听起来很愚蠢,但请耐心等待,因为我完全是初学者。我下载了两个 jQuery 版本,开发版本和生产版本。我想知道作为学习 jQuery 的初学者,什么更适合我。 最佳答案 如果您对 jQue
The documentation说要使用 1.6.4,但我们现在已经升级到 1.7.2。 我可以在 jQuery Mobile 中使用最新版本的 jQuery 吗? 最佳答案 您当然可以,但如果您想
我在这里看到这个不错的 jquery 插件:prettyphoto jquery lightbox有没有办法只用一个简单的jquery来实现这样的效果。 我只需要弹出和内联内容。你的回复有很大帮助。
很明显我正在尝试做一些 jQuery 不喜欢的事情。 我正在使用 javascript 上传图片。每次上传图片时,我都希望它可见,并附加一个有效的删除脚本。显示工作正常,删除则不然,因为当我用 fir
这两个哪个是正确的? jQuery('someclass').click(function() { alert("I've been clicked!"); }); 或 jQuery('somec
我正在寻找一个具有以下格式的插件 if (jQuery)(function ($) { -- plugin code -- })(jQuery); 我明白 (function ($)
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭10 年前。 Improv
我知道这个问题已经被问过几次了,但想知道您是否可以帮助我解决这个问题。 背景:我尝试创建一个使用 Ajax 提交的表单(jQuery 表单提交)。我已经工作得很好,然后我想在表单上得到验证。我可以使用
我正在使用无处不在的jquery validate plugin用于表单验证。它支持使用metadata plugin用于向表单元素添加验证规则。 我正在使用此功能。当验证查找这些规则时,它会对元素进
我更喜欢为我一直在开发的网络社区添加实用的视觉效果,但随着事情开始堆积,我担心加载时间。 拥有用户真的更快吗加载(希望是缓存的)副本来自 Google 存储库的 jquery? 是否使用 jQuery
这个问题已经有答案了: Slide right to left? (17 个回答) 已关闭 9 年前。 你能告诉我有没有办法在 jQuery 中左右滑动而不使用 jQuery UI 和 jQuery
我如何找出最适合某种情况的方法?任何人都可以提供一些示例来了解功能和性能方面的差异吗? 最佳答案 XMLHttpRequest 是原始浏览器对象,jQuery 将其包装成一种更有用和简化的形式以及跨浏
运行时 php bin/console oro:assets:build ,我有 11 个这样的错误: ERROR in ../node_modules/jquery-form/src/jquery.
我试图找到 jQuery.ajax() 在源代码中的定义位置。但是,使用 grep 似乎不起作用。 在哪里? 谢谢。 > grep jQuery.ajax src/* src/ajax.js:// B
$.fn.sortByDepth = function() { var ar = []; var result = $([]); $(this).each(function()
我的页面上有多个图像。为了检测损坏的图像,我使用了在 SO 上找到的这个。 $('.imgRot').one('error',function(){ $(this).attr('src','b
我在理解 $ 符号作为 jQuery 函数的别名时遇到了一些麻烦,尤其是在插件中。你能解释一下 jQuery 如何实现这种别名:它如何定义 '$' 作为 jQuery 函数的别名?这是第一个问题。 其
我是一名优秀的程序员,十分优秀!