如何将lodash导入NativeScript Playground

时间:2018-12-03 18:43:15

标签: javascript lodash nativescript angular2-nativescript

我正在学习NativeScript,并尝试在Playground中学习一些教程,他们正在使用lodash。根据NativeScripts的博客,您应该能够使用下拉菜单在操场上使用lodash模块。 (https://www.nativescript.org/blog/nativescript-playground-is-on-fire

enter image description here enter image description here

这有效,并且lodash文件夹已添加到app文件夹中。当我尝试导入它时出现问题。它说找不到lodash。我尝试过:

import * as _ from 'lodash';
import _ from 'lodash';
var _ = require ('lodash');

还有许多其他建议,但似乎都没有用。我尝试添加@types(NativeScript说它们会自动添加),但是即使添加了@ types / lodash,它也失败了。

enter image description here

任何人都知道如何在NativeScript游乐场中进行这项工作吗?谢谢。

1 个答案:

答案 0 :(得分:1)

尝试使用相对路径的简单require语句。

const _ = require('../lodash');