web-dev-qa-db-ja.com

「バイナリ演算引数の型newvalは文字列型と互換性がない」が表示されるのはなぜですか

次のコードとその中にWebStormインスペクションBinary operation argument type newVal is not compatible with type stringが表示されます:

enter image description here

なぜだろう

完全なモジュールコード:

define(function (require) {
    "use strict";

    var ng = require('angular');
    require('../ngModule').directive('downloadFile', ['$parse', 'auth.authService', function ($parse, authService) {
        return {
            restrict: 'A',
            link: function (scope, element, attrs) {
                var getter = $parse(attrs.downloadFile);

                scope.$watch(getter, function (path) {
                    if (path !== "") {
                        var form = document.createElement("form");
                        var element1 = document.createElement("input");
                        var element2 = document.createElement("input");

                        form.method = "POST";
                        form.action = path;

                        element1.value = authService.getToken();
                        element1.name = "Authorization";
                        form.appendChild(element1);

                        element.append(form);

                        form.submit();
                        element.empty();
                    }
                });
            }
        };
    }]);
});
25
Maxim Koretskyi

AngularJSのJSDoc定義により、WebStormはpath引数をブール値であると見なします。

独自のJSDocを追加することで、WebStormの不満を解消できます。

if (path !== /** @type {boolean} */"") {

11
Dale Smith