- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 nopcommerce 并添加了使用文件 uploader 上传照片的代码,但出现此错误:
Reason: XHR returned response code 404
@model ProductDetailsModel
@using Nop.Core.Domain.Seo;
@using Nop.Core.Infrastructure;
@using Nop.Web.Models.Catalog;
@{
Layout = "~/Views/Shared/_ColumnsOne.cshtml";
//title
Html.AddTitleParts(!String.IsNullOrEmpty(Model.MetaTitle) ? Model.MetaTitle : Model.Name);
//meta
Html.AddMetaDescriptionParts(Model.MetaDescription);
Html.AddMetaKeywordParts(Model.MetaKeywords);
//page class
Html.AppendPageCssClassParts("html-product-details-page");
var seoSettings = EngineContext.Current.Resolve<SeoSettings>();
//canonical URL
if (seoSettings.CanonicalUrlsEnabled)
{
var productUrl = Url.RouteUrl("Product", new { SeName = Model.SeName }, this.Request.Url.Scheme);
Html.AddCanonicalUrlParts(productUrl);
}
//open graph META tags
if (seoSettings.OpenGraphMetaTags)
{
Html.AddHeadCustomParts("<meta property=\"og:type\" content=\"product\" />");
Html.AddHeadCustomParts("<meta property=\"og:title\" content=\"" + Html.Encode(Model.Name) + "\" />");
Html.AddHeadCustomParts("<meta property=\"og:description\" content=\"" + Html.Encode(Nop.Core.Html.HtmlHelper.StripTags(Model.MetaDescription)) + "\" />");
Html.AddHeadCustomParts("<meta property=\"og:image\" content=\"" + Model.DefaultPictureModel.ImageUrl + "\" />");
Html.AddHeadCustomParts("<meta property=\"og:url\" content=\"" + Request.Url.AbsoluteUri + "\" />");
Html.AddHeadCustomParts("<meta property=\"og:site_name\" content=\"" + Html.Encode(Model.CurrentStoreName) + "\" />");
}
//Twitter META tags
if (seoSettings.TwitterMetaTags)
{
Html.AddHeadCustomParts("<meta property=\"twitter:card\" content=\"summary\" />");
Html.AddHeadCustomParts("<meta property=\"twitter:site\" content=\"" + Html.Encode(Model.CurrentStoreName) + "\" />");
Html.AddHeadCustomParts("<meta property=\"twitter:title\" content=\"" + Html.Encode(Model.Name) + "\" />");
Html.AddHeadCustomParts("<meta property=\"twitter:description\" content=\"" + Html.Encode(Nop.Core.Html.HtmlHelper.StripTags(Model.MetaDescription)) + "\" />");
Html.AddHeadCustomParts("<meta property=\"twitter:image\" content=\"" + Model.DefaultPictureModel.ImageUrl + "\" />");
Html.AddHeadCustomParts("<meta property=\"twitter:url\" content=\"" + Request.Url.AbsoluteUri + "\" />");
}
Html.AddCssFileParts("~/Scripts/fineuploader/fineuploader-4.2.2.min.css");
Html.AddScriptParts("~/Scripts/fineuploader/jquery.fineuploader-4.2.2.min.js");
<script type="text/template" id="qq-template-gallery">
<div class="qq-uploader-selector qq-uploader qq-gallery" qq-drop-area-text="Drop files here">
<div class="qq-total-progress-bar-container-selector qq-total-progress-bar-container">
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-total-progress-bar-selector qq-progress-bar qq-total-progress-bar"></div>
</div>
<div class="qq-upload-drop-area-selector qq-upload-drop-area" qq-hide-dropzone>
<span class="qq-upload-drop-area-text-selector"></span>
</div>
<div class="qq-upload-button-selector qq-upload-button">
<div>Upload a file</div>
</div>
<span class="qq-drop-processing-selector qq-drop-processing">
<span>Processing dropped files...</span>
<span class="qq-drop-processing-spinner-selector qq-drop-processing-spinner"></span>
</span>
<ul class="qq-upload-list-selector qq-upload-list" role="region" aria-live="polite" aria-relevant="additions removals">
<li>
<span role="status" class="qq-upload-status-text-selector qq-upload-status-text"></span>
<div class="qq-progress-bar-container-selector qq-progress-bar-container">
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-progress-bar-selector qq-progress-bar"></div>
</div>
<span class="qq-upload-spinner-selector qq-upload-spinner"></span>
<div class="qq-thumbnail-wrapper">
<img class="qq-thumbnail-selector" qq-max-size="120" qq-server-scale>
</div>
<button type="button" class="qq-upload-cancel-selector qq-upload-cancel">X</button>
<button type="button" class="qq-upload-retry-selector qq-upload-retry">
<span class="qq-btn qq-retry-icon" aria-label="Retry"></span>
Retry
</button>
<div class="qq-file-info">
<div class="qq-file-name">
<span class="qq-upload-file-selector qq-upload-file"></span>
<span class="qq-edit-filename-icon-selector qq-edit-filename-icon" aria-label="Edit filename"></span>
</div>
<input class="qq-edit-filename-selector qq-edit-filename" tabindex="0" type="text">
<span class="qq-upload-size-selector qq-upload-size"></span>
<button type="button" class="qq-btn qq-upload-delete-selector qq-upload-delete">
<span class="qq-btn qq-delete-icon" aria-label="Delete"></span>
</button>
<button type="button" class="qq-btn qq-upload-pause-selector qq-upload-pause">
<span class="qq-btn qq-pause-icon" aria-label="Pause"></span>
</button>
<button type="button" class="qq-btn qq-upload-continue-selector qq-upload-continue">
<span class="qq-btn qq-continue-icon" aria-label="Continue"></span>
</button>
</div>
</li>
</ul>
<dialog class="qq-alert-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">Close</button>
</div>
</dialog>
<dialog class="qq-confirm-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">No</button>
<button type="button" class="qq-ok-button-selector">Yes</button>
</div>
</dialog>
<dialog class="qq-prompt-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<input type="text">
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">Cancel</button>
<button type="button" class="qq-ok-button-selector">Ok</button>
</div>
</dialog>
</div>
</script>
}
<!--product breadcrumb-->
@section Breadcrumb
{
@Html.Partial("_ProductBreadcrumb", Model.Breadcrumb)
}
@Html.Widget("productdetails_after_breadcrumb", Model.Id)
<div class="page product-details-page">
<div class="page-body">
@Html.Widget("productdetails_top", Model.Id)
@using (Html.BeginRouteForm("Product", new { SeName = Model.SeName }, FormMethod.Post, new { id = "product-details-form" }))
{
<div itemscope itemtype="http://schema.org/Product" data-productid="@Model.Id">
<div class="product-essential">
@Html.Widget("productdetails_before_pictures", Model.Id)
<!--product pictures-->
@Html.Partial("_ProductDetailsPictures", Model)
@Html.Widget("productdetails_after_pictures", Model.Id)
<div class="overview">
@Html.Partial("_Discontinued", Model)
<div class="product-name">
<h1 itemprop="name">
@Model.Name
</h1>
</div>
@if (!String.IsNullOrEmpty(Model.ShortDescription))
{
<div class="short-description">
@Html.Raw(Model.ShortDescription)
</div>
}
@Html.Widget("productdetails_overview_top", Model.Id)
<!--product reviews-->
@Html.Partial("_ProductReviewOverview", Model.ProductReviewOverview)
<!--manufacturers-->
@Html.Partial("_ProductManufacturers", Model.ProductManufacturers)
<!--availability-->
@Html.Partial("_Availability", Model)
<!--SKU, MAN, GTIN, vendor-->
@Html.Partial("_SKU_Man_GTIN_Ven", Model)
<!--delivery-->
@Html.Partial("_DeliveryInfo", Model)
<!--sample download-->
@Html.Partial("_DownloadSample", Model)
<!--attributes-->
@{
var dataDictAttributes = new ViewDataDictionary();
dataDictAttributes.TemplateInfo.HtmlFieldPrefix = string.Format("attributes_{0}", Model.Id);
@Html.Partial("_ProductAttributes", Model.ProductAttributes, dataDictAttributes)
}
<!--gift card-->
@{
var dataDictGiftCard = new ViewDataDictionary();
dataDictGiftCard.TemplateInfo.HtmlFieldPrefix = string.Format("giftcard_{0}", Model.Id);
@Html.Partial("_GiftCardInfo", Model.GiftCard, dataDictGiftCard)
}
<!--rental info-->
@{
var dataDictRental = new ViewDataDictionary();
dataDictRental.TemplateInfo.HtmlFieldPrefix = string.Format("rental_{0}", Model.Id);
@Html.Partial("_RentalInfo", Model, dataDictRental)
}
<!--price & add to cart-->
@{
var dataDictPrice = new ViewDataDictionary();
dataDictPrice.TemplateInfo.HtmlFieldPrefix = string.Format("price_{0}", Model.Id);
@Html.Partial("_ProductPrice", Model.ProductPrice, dataDictPrice)
@Html.Partial("_ProductTierPrices", Model.TierPrices)
var dataDictAddToCart = new ViewDataDictionary();
dataDictAddToCart.TemplateInfo.HtmlFieldPrefix = string.Format("addtocart_{0}", Model.Id);
@Html.Partial("_AddToCart", Model.AddToCart, dataDictAddToCart)
}
<!--wishlist, compare, email a friend-->
<div class="overview-buttons">
@Html.Widget("productdetails_inside_overview_buttons_before", Model.Id)
@{
var dataDictAddToWishlist = new ViewDataDictionary();
dataDictAddToWishlist.TemplateInfo.HtmlFieldPrefix = string.Format("addtocart_{0}", Model.Id);
@Html.Partial("_AddToWishlist", Model.AddToCart, dataDictAddToWishlist)
}
@Html.Partial("_CompareProductsButton", Model)
@Html.Partial("_ProductEmailAFriendButton", Model)
@Html.Widget("productdetails_inside_overview_buttons_after", Model.Id)
</div>
@Html.Partial("_ShareButton", Model)
@Html.Widget("productdetails_overview_bottom", Model.Id)
</div>
@if (!String.IsNullOrEmpty(Model.FullDescription))
{
<div class="full-description" itemprop="description">
@Html.Raw(Model.FullDescription)
</div>
}
</div>
@Html.Widget("productdetails_before_collateral", Model.Id)
<div class="product-collateral">
@Html.Partial("_ProductSpecifications", Model.ProductSpecifications)
@Html.Partial("_ProductTags", Model.ProductTags)
</div>
@Html.Action("ProductsAlsoPurchased", "Product", new { productId = Model.Id })
@Html.Action("RelatedProducts", "Product", new { productId = Model.Id })
</div>
}
@Html.Widget("productdetails_bottom", Model.Id)
@Html.Partial("Picture")
<div id="fine-uploader-gallery"></div>
<script>
var galleryUploader = new qq.FineUploader({
element: document.getElementById("fine-uploader-gallery"),
template: 'qq-template-gallery',
request: {
endpoint: '/server/uploads'
},
thumbnails: {
placeholders: {
waitingPath: '/source/placeholders/waiting-generic.png',
notAvailablePath: '/source/placeholders/not_available-generic.png'
}
},
validation: {
allowedExtensions: ['jpeg', 'jpg', 'gif', 'png']
},
callbacks: {
onError: function (id, name, errorReason, xhrOrXdr) {
alert(qq.format("Error on file number {} - {}. Reason: {}", id, name, errorReason));
}
},
cors: {
//all requests are expected to be cross-domain requests
expected: false,
//if you want cookies to be sent along with the request
sendCredentials: false
},
xhrFields: {
withCredentials: true
}
});
</script>
</div>
</div>
最佳答案
nopCommerce 有一个关于此的已知问题。如果您的应用程序在 IIS 虚拟目录下运行,Tiny MCE 可能无法找到您的图像。
编辑以下文件:
\Administration\Views\Shared\EditorTemplates\RichEditor.cshtml
取消注释行:
//allowJbimages = true;
//allowRoxyFileman = false;
收件人:
allowJbimages = true;
allowRoxyFileman = false;
引用资料:[1] https://github.com/nopSolutions/nopCommerce/issues/142[2] https://www.nopcommerce.com/boards/t/35370/virtual-directory-not-included-in-the-images-urls.aspx
关于c# - 上传图片时FileUploader错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44747509/
我正在配置 blueimp 以在单击发布按钮时上传图像。我的问题是它没有调用 $('#fileupload').fileupload 函数。我已经包含了以下 javascript 文件。以下是我的代码
我正在使用 Firebase 构建一个 Angular 应用程序,以将图像上传到数据库并从那里检索它。 上传文件.service.ts import {Injectable} from '@angul
我应该使用哪个库?唯一的目的是上传文件。在处理大型请求时,我想在性能和可扩展性方面使用最佳库。如果我的项目扩大规模,我最终将使用 CDN 服务。 最佳答案 以下是在这种情况下选择图书馆时必须考虑的一些
我尝试什么:我想使用 jQuery mobile 在 JSF 页面中上传带有 Primefaces FileUpload 标记的图片。此面仅在桌面浏览器上可用,但也应具有与其他页面一样的外观。问题:总
我在 gridview 中使用了 Ajax fileupload 控件,为 gridview 中的每条记录上传文件。我使用了 ajax fileupload 控件,因为我也需要拖放上传功能。它的工作很
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章FileUpload 控件禁止手动输入的方法由作者收集整理,如果你对这篇
我正在使用 primefaces fileUpload 组件,然后我检查了 FileUploadEvent.getFile 但我没有看到可靠地获取扩展名的方法。有任何想法吗? 最佳答案 getFile
在我的 GWT 项目中,我想: 为 FileUpload 小部件设置过滤器,使其只接受 JPG 文件。 启用 myButton如果 FileUpload 小部件,称为 chooser , 选择了任何文
我的 Extjs 应用程序中有一个文件上传字段。我尝试通过以下代码将文件加载到服务器: var form = Ext.getCmp('ProcImpNewSugFileForm').getForm()
长话短说,我想允许用户将文件上传到服务器。我尝试使用 Jquery 文件上传功能,但它似乎无法正常工作。 我已经简化了我的代码以查明错误/错误。我认为完成的例程没有被调用。 因此只有第一个 conso
我正在上传一个带有 PF 3.5 File Uploader 的文件 我的上传方法如下所示: public void handleFileUpload(FileUploadEvent event) {
我正在使用 FileUpload 控件上传图片,我可以使用那个浏览按钮选择图片,但是当我尝试预览所选图片时,我没有得到文件名,它显示为空.. protected void btnImgUpload_C
如何仅使用 FileUpload 代码隐藏进行上传?我的控件是代码隐藏的,因为我有 Dropdown_SelectedIndexChanged 并且需要生成各种数量的控件。我可以很好地列出控件并将文件
出于某种原因,当我尝试上传多个文件时,所有文件都成为第一个文件的副本。当我说副本时,我指的是不同的文件名、不同的文件扩展名,但所有图像中的图片相同。 例子: 我选择了四个文件。 2个png,2个jpg
我正在做一个简单的测试,只是尝试上传一个文件,将其转换为无符号 8 数组,然后将其记录到控制台 我的代码运行完美,但每次我按下按钮上传文件时,控制台都会递增地重复输出,让我解释一下: 第一次点击控制台
我正在使用 apache 的 FileUpload 将一些文件上传到我的网络服务器。问题是我不想将它们上传到机器上的特定位置,即:c:\tmp,而是上传到相对路径,例如 /ProjectName/tm
我想在我的 .FileUpload button 上应用这个 css,但它只适用于 IE 而不是 Chrome,我仍然不知道它有什么问题。有人有想法吗? 感谢帮助 .FileUpload { wid
我正在使用 asp.net C# FIleUpload。我遇到了一个问题,那就是当我上传图片并将其存储在指定的文件夹中时,刷新页面后图片会再次上传,次数与刷新页面的次数一样多。我尝试启用和禁用 Vie
我想知道为什么我的方法FileUpload.HasFile总是为null .. 这是我使用的Xaml。
我的 Web 表单上有一个 FileUpload 控件 (FileUpload1),还有一个“Sumbit”按钮、一个标签和一个包含 UserID 的隐藏字段。我在按钮的点击事件中有以下代码: str
我是一名优秀的程序员,十分优秀!