代码给出了错误,“ReferenceError: CryptoJS没有定义”,而我已经包含了必需的.js引用,原因是什么?

时间:2022-06-03 02:09:52

Here is my code, I have included following .js files, onpage load it is giving error "ReferenceError: CryptoJS is not defined" why does it give that error when already js references are added. I am making a sharepoint-2013 app using office 365.

这是我的代码,我包含了以下。js文件,在页面加载时它会产生错误“ReferenceError: CryptoJS未被定义”,为什么当已经添加了js引用时它会产生错误呢?我正在使用office 365开发一个sharepoint-2013应用。

<script type="text/javascript" src="../Scripts/sha1.js"></script>
<script type="text/javascript" src="../Scripts/hmac-sha1.js"></script>

  'use strict';

var context = SP.ClientContext.get_current();
var user = context.get_web().get_currentUser();

(function () {

    // This code runs when the DOM is ready and creates a context object which is 
    // needed to use the SharePoint object model
    $(document).ready(function () 
    {
        getUserName();

        $("#button1").click(function()
        {
                paraupdate();   
        });

    });

    // This function prepares, loads, and then executes a SharePoint query to get 
    // the current users information

    function paraupdate()
    {

        var str=""+$("#textbox1").val();
        alert(""+str);
        var message = str+"json539ff0f815ca697c681fe01d32ba52e3";
        var secret = "<my private key>";        
        var crypto = CryptoJS.HmacSHA1(message, secret).toString();
        alert("crypto answer is " + crypto);
        var siteurl="http://pnrbuddy.com/api/station_by_code/code/"+str+"/format/json/pbapikey/539ff0f815ca697c681fe01d32ba52e3/pbapisign/"+crypto;


         $.ajax({
            url: siteurl,
            type: "GET",
            dataType: 'json',

            success: function (data) {
                     alert("IN Success");
                alert(""+data.station_by_code);

            },
            error: function (error) {
                alert("IN Error");
                alert(JSON.stringify(error));
            }
        });       


    }


    function getUserName() 
    {
        context.load(user);
        context.executeQueryAsync(onGetUserNameSuccess, onGetUserNameFail);
    }

    // This function is executed if the above call is successful
    // It replaces the contents of the 'message' element with the user name
    function onGetUserNameSuccess() 
    {
        $("#label1").html("Enter Station Code : ");
        $("#button1").val("CLICK");

    }

    // This function is executed if the above call fails
    function onGetUserNameFail(sender, args) {
        alert('Failed to get user name. Error:' + args.get_message());
    }

})();

3 个解决方案

#1


10  

include core-min.js before sha256.js

包括core-min。js sha256.js之前

#2


0  

There are one of two forms for fixing this:

解决这个问题有两种方式:

1: Manual Load, i have more success with this pattern:

1:手动加载,我更成功的实现了这个模式:

$.getScript(scriptbase + "SP.Runtime.js",
            function () {
                $.getScript(scriptbase + "SP.js", execOperation);
            }
        );

Example:

例子:

$.getScript("~hostUrl/_layouts/15/SP.RequestExecutor.js", getListDataREST);

2: Script on Demand:

2:脚本需求:

SP.SOD.executeFunc('sp.userprofiles.js', 'SP.ClientContext', loadUserData);

This SharepointExchange posting, gives the usual JSOM implementation for most AppParts: Jquery is not firing on Page load SharePoint 2013

这个SharepointExchange贴子为大多数应用程序提供了通常的JSOM实现:Jquery并没有在2013年加载SharePoint页面

#3


0  

Error solved I added online references instead,

错误解决了,我增加了在线参考,

<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha1.js"></script>

<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha1.js"></script>

#1


10  

include core-min.js before sha256.js

包括core-min。js sha256.js之前

#2


0  

There are one of two forms for fixing this:

解决这个问题有两种方式:

1: Manual Load, i have more success with this pattern:

1:手动加载,我更成功的实现了这个模式:

$.getScript(scriptbase + "SP.Runtime.js",
            function () {
                $.getScript(scriptbase + "SP.js", execOperation);
            }
        );

Example:

例子:

$.getScript("~hostUrl/_layouts/15/SP.RequestExecutor.js", getListDataREST);

2: Script on Demand:

2:脚本需求:

SP.SOD.executeFunc('sp.userprofiles.js', 'SP.ClientContext', loadUserData);

This SharepointExchange posting, gives the usual JSOM implementation for most AppParts: Jquery is not firing on Page load SharePoint 2013

这个SharepointExchange贴子为大多数应用程序提供了通常的JSOM实现:Jquery并没有在2013年加载SharePoint页面

#3


0  

Error solved I added online references instead,

错误解决了,我增加了在线参考,

<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha1.js"></script>

<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha1.js"></script>