我正在使用 OSX 10.10、Webstorm 10.0.4、AngularJS 1.4.3
例如:
.factory('huodai.order.BatchPlanModel', function () {
var BatchPlanModel = function (date, batches) {
date = date || "";
batches = batches || {};
this.date = date;
this.batches = batches;
};
return BatchPlanModel;
})
我希望当我输入var a = new BatchPlanModel()
控制器时,会出现一些关于参数或文档的提示。但是当我按下 F1 时显示的是控制器的定义。喜欢:
($filter,
[ optional ] $scope,
[ optional ] $state,
$timeout,
BatchPlanModel,
BatchPlanFactory,
EXAMINATION,
ARRIVE_TYPE )
Parameters:
$filter
$scope
$state
$timeout
BatchPlanModel
BatchPlanFactory
并添加类似的东西
/**
*
* @param date
* @param batches
* @constructor
*/
在var BatchPlanModel = ...
没有帮助之前。