Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 HotTowel 在 SPA 中开发了一个应用程序。该应用程序在 localhost 上运行良好。但是当我在 IIS 服务器上上传时。它显示以下错误:
“元数据查询失败:api/breeze/metadata;Nan”
假设您的 SPA 部署到 IIS 中的虚拟应用程序,您是否尝试将应用程序的名称添加到您的服务名称
如果您的网址是 www.test.com/myapp
var dataService = new breeze.DataService({ serviceName: '[myapp]/api/breeze', hasServerMetadata: true });
只是在黑暗中开枪。