我刚刚在我的ubuntu中安装了角度cli,但当我尝试创建新的app时
// declarations
template<typename... U> constexpr int CheckIntMap(const char *szStr, int nDefaultInt, const char *szOptStr1, int nOptInt1, U&&... u);
template<> constexpr int CheckIntMap(const char *szStr, int nDefaultInt, const char *szOptStr1, int nOptInt1);
// definitions
template<typename... U> constexpr int CheckIntMap(const char *szStr, int nDefaultInt, const char *szOptStr1, int nOptInt1, U&&... u)
{
return (CheckIntMap(szStr, nDefaultInt, szOptStr1, nOptInt1) == nOptInt1) ? nOptInt1 : CheckIntMap(szStr, nDefaultInt, std::forward<U>(u)...);
}
template<> constexpr int CheckIntMap(const char *szStr, int nDefaultInt, const char *szOptStr1, int nOptInt1)
{
return CompareUTF8(szStr, szOptStr1) ? nOptInt1 : nDefaultInt;
}
它显示错误 $.ajax({
url: '/addnewrelease',
dataType: 'json',
type: "GET",
timeout: validationMessages.timeoutCount,
data: {
'releaseName': releaseName.value,
'productId': productId,
'startDate': startDate.value,
'releaseDate': endDate.value,
'codeFreeze': codeFreeze.value,
'duration': duration.value,
'releaseType': type,
'releaseVersion': version.value,
'releaseTemplate': template,
'phases': phases
},
我在ng new my-dream-app
安装了 @ schematics / angular ,但它没有用。我卸载了角度cli并再次重新安装它但它没有工作,它抛出相同的错误。
答案 0 :(得分:0)
如果使用-g键安装angular-cli,应该没问题。如果不是,请尝试全局安装angular-cli。 然后,您可以检查依赖关系。在您的node_modules中找到@angular文件夹。在/ cli / node_modules内部,您应该看到@schematics文件夹。如果存在,一切都会很好。