3

私は現在、SharePoint JSOM で AngularJS を使用して、結果ソースに対していくつかのキーワード クエリを実行しています。

ResultSourceName および ResultSourceLevel 変数を受け入れる角度付きファクトリがあります

angular.module('app.services.sharepoint').factory('resultSourceDataSvc', ['$log', '$q', '$timeout', function ($log, $q, $timeout) {
    return function (resultSourceName, resultSourceLevel) {         
        return new ResultSourceDataService($log, $q, $timeout, resultSourceName, resultSourceLevel);
    }
}]);

これは私のコントローラーに注入され、次のように使用されます。

var inTheNewsResultDataSource = resultSourceData('TSToday In The News Result Source', 'SPSite');
inTheNewsResultDataSource.ready(function () {
    inTheNewsResultDataSource.getData(null, IN_THE_NEWS_COLUMNS, IN_THE_NEWS_MAP_COLUMNS)
        .then(function (data) {
            $log.debug('Resolving data:', data);
            deferred.resolve(data);
        },
        function (resp) {
            $log.error('Error while attempting to retrieve In The News data:', resp);
            deferred.reject(resp);
        });
});

すべての実際の内容は、工場から返された ResultSourceDataService で処理されます。コードは次のとおりです。

function ResultSourceDataService($log, $q, $timeout, resultSourceName, resultSourceLevel) {
    var deferred = $q.defer(),
        promise = deferred.promise,
        context = undefined,
        resultSourceQuery = undefined,
        resultSourceExecutor = undefined,
        properties = undefined;

    $log = $log.getInstance('app.services.sharepoint.resultSourceDataSvc(' + resultSourceName + ')');

    function init() {           
        $log.debug('Initializing new Result Source Data Service for:', resultSourceName, 'on', resultSourceLevel);          

        SP.SOD.registerSod('sp.search.js', '/_layouts/15/sp.search.js');

        SP.SOD.loadMultiple(['sp.js', 'sp.search.js'], function () {
            context = SP.ClientContext ? SP.ClientContext.get_current() : undefined;

            // should probably add error checking to make sure context is loaded here

            resultSourceQuery = new Microsoft.SharePoint.Client.Search.Query.KeywordQuery(context);
            resultSourceExecutor = new Microsoft.SharePoint.Client.Search.Query.SearchExecutor(context);

            resultSourceQuery.set_trimDuplicates(false);

            resultSourceQuery.get_properties().set_item('SourceName', resultSourceName);
            resultSourceQuery.get_properties().set_item('SourceLevel', resultSourceLevel);

            $log.debug('Initialized');
            deferred.resolve();
        });
    }
    init();

    //#region Private Functions
    function setSelectProperties(columnsToRetrieve) {
        properties = resultSourceQuery.get_selectProperties();

        for (var i = columnsToRetrieve.length; i-- > 0;) {
            $log.debug('Adding in property to retrieve', columnsToRetrieve[i]);
            properties.add(columnsToRetrieve[i]);
        }
    }
    function getResults(data, columnsToRetrieve, columnsToMap) {
        return data.map(function (obj, i) {
            var result = columnsToRetrieve.length == 0 ? obj : {};
            for (var j = columnsToRetrieve.length; j-- > 0;) {
                result[columnsToMap[j]] = obj[columnsToRetrieve[j]];
            }
            $log.debug('getResult', result);

            return result;
        });
    }
    //#endregion

    //#region Public Functions
    this.getData = function (keyword, columnsToRetrieve, columnsToMap) {
        var deferred = $q.defer(),
            promise = deferred.promise,
            data = undefined,
            results = [];

        keyword = keyword || '*';
        columnsToRetrieve = columnsToRetrieve || [];
        columnsToMap = columnsToMap || columnsToRetrieve;           

        resultSourceQuery.set_queryText(keyword);
        setSelectProperties(columnsToRetrieve);

        $log.info('Attempting to retrieve data from result source with keyword:', keyword, resultSourceQuery);

        data = resultSourceExecutor.executeQuery(resultSourceQuery);

        context.executeQueryAsync(
            function (sender, args) {
                $log.debug('Data retrieved successfully', data.get_value().ResultTables);
                results = getResults(data.get_value().ResultTables[0].ResultRows, columnsToRetrieve, columnsToMap);                    
                $log.info('Resolving data', results);
                deferred.resolve(results);
            },
            function (sender, args) {
                $log.error('Error with resolving data in ResultSourceDataService', args.get_message());
                deferred.reject(args.get_message());
            });

        return promise;
    }
    this.ready = function (fn) {
        promise.then(fn);
    }
    //#endregion        
}

このコードが実行されているページをロードすると、正常に実行されます。ページを更新すると、正常に動作します。ただし、サイト内の他のページからこのページに移動すると、結果ソースが指定されていないかのように壊れてデータが返されます。

何らかの理由で、QueryModification (私が正しければ、クエリで探している ContentType を本質的に伝えます) が変更されています。最初にページをロードし、コンソールに記録されたデータ ( $log.debug('Data retrieved successfully', data.get_value().ResultTables);) を確認すると、それをドリルダウンして QueryModification の違いを確認できます。

正常に実行されると (ページを更新するか、サイト外から直接移動すると)、ContentTypeId:0x0100A9723709C6D74A77B01EA922C770FDD0*正しい の値が表示されます。でも; SharePoint 内からページに移動すると、値* -ContentClass=urn:content-class:SPSPeopleが表示されます。結果ソース名を指定しなかった場合に表示される結果が返されます。

同じ正確な変数を渡すときに、これを引き起こしている可能性があることについて何か考えはありますか?

4

1 に答える 1

0

なぜこれが機能するのかわかりませんが、

        resultSourceQuery.get_properties().set_item('SourceName', resultSourceName);
        resultSourceQuery.get_properties().set_item('SourceLevel', resultSourceLevel);

メソッドからinitメソッドに追加してgetData問題を修正しました。getData呼び出し元のコードがメソッドを使用している場合、メソッドの前に常に設定する必要があるため、なぜ機能するのかわかりませんready

なぜこれが修正されたのか誰かが分かったら、それを指摘してください。それまでの間、私の問題は解決されました。

于 2015-09-25T18:34:52.527 に答える