我使用默认配方设置了Orchard v.1.10.1.0并且无法添加媒体。 Javascript控制台显示此错误:
GET https://website.azurewebsites.net/Media/Default/_Profiles/1338a03e/abbfa561/header.png?v=636100967487424883 404 (Not Found)
Uncaught TypeError: deepestChildPath.contains is not a function
答案 0 :(得分:4)
这是Orchard 1.10中的已知错误。您应该可以通过更改Orchard.Web/Modules/Orchard.MediaLibrary/Scripts/media-library.js
中的第385行来修复它
到var separator = deepestChildPath.indexOf('/') > -1 ? '/' : '\\';
如the GitHub history所示。