小编Sag*_*gar的帖子

如何在github存储库中创建文件夹?

我想在github存储库中创建文件夹并在该文件夹中添加文件.怎么做到这一点?

git github github-services

290
推荐指数
6
解决办法
56万
查看次数

如何获取谷歌oauth的访问令牌?

我正在使用C#(ASP.NET).我想使用Google oauth访问我的应用中的用户个人资料详情.我成功获得了授权码,但在获取访问令牌时遇到了问题.我更喜欢Google教程.在教程中,我读到我必须发送请求并从谷歌获得响应.为此我使用System.Net.HttpWebRequest/HttpWebResponse(我是以正确的方式).我用这个代码....

byte[] buffer = Encoding.ASCII.GetBytes("?code=" + code + "&client_id=xxx&client_secret=xxx&redirect_uri=xxxx&grant_type=authorization_code");
HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://accounts.google.com");
req.Method = "POST";
req.ContentType = "application/x-www-form-urlencoded";
req.ContentLength = buffer.Length;

Stream strm = req.GetRequestStream();
strm.Write(buffer, 0, buffer.Length);
strm.Close();

HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
Response.Write(((HttpWebResponse)resp).StatusDescription);
Run Code Online (Sandbox Code Playgroud)

但是,我收到了错误:

远程服务器返回错误:(405)方法不允许.

更新:此变量code是授权代码.

c# asp.net google-api oauth-2.0

11
推荐指数
1
解决办法
3万
查看次数

如何在angularJS中添加列表中的项目?

快照

我希望点击"添加到购物车"按钮,项目将添加"我的购物车".这是我的angularJS代码

app.controller("OnlineShopping", function($scope)
 { 
    $scope.items = [
        {Product:"Moto G2", Desc: "Android Phone", Price: 10999},
        {Product:"The Monk who sold his ferrari", Desc: "Motivational book", Price: 250},
        {Product:"Mi Power Bank", Desc: "Power Bank", Price: 999},
        {Product:"Dell Inspiron 3537", Desc: "Laptop", Price: 45600}
    ];
    $scope.editing = false;
    $scope.addItem = function(item) {
        $scope.items.push(item);
        $scope.item = {};
    };
Run Code Online (Sandbox Code Playgroud)

我在这里发现了一些使用ng-model和问题,ng-bing但它适用于文本框,但在这里我没有从文本框中获取输入.这是我的"我的购物车"的不完整代码

    <h2>My Cart</h2>
        <div style="border: 1px solid blue;">
        </div>
        <table border="1" class="mytable">
        <tr>
        <td>Item</td>
           <td>Description</td>
           <td>Price</td>
        </tr>
        <tr ng-repeat="item in items">
                  <!-- What …
Run Code Online (Sandbox Code Playgroud)

html javascript jquery angularjs

4
推荐指数
1
解决办法
6万
查看次数

通过文本框在sql server 2005中存储数据时获取错误

我通过文本框和按钮在SQL Server 2005中存储数据(大约1500字).我正在使用此代码.

protected void Button1_Click(object sender, EventArgs e)
{
    conn.Open();
    String query = String.Format("insert into try (data,sno) values ('{0}',22)",TextBox1.Text);
    SqlCommand cmd = new SqlCommand(query, conn);
    cmd.ExecuteNonQuery();
    Label1.Text = "submitted";
    conn.Close();
}
Run Code Online (Sandbox Code Playgroud)

我有'data'数据类型列'char(4000)'.

问题是,当我存储第1段(约1500字)时,它成功存储.但是当我存储另一段(大约1500字)时,它会显示错误.

"'s'附近的语法不正确.字符串后面的未闭合引号',22)'."

问题是什么 ??

c# database asp.net sql-server-2005

2
推荐指数
1
解决办法
1049
查看次数

解析URL/Web服务

我向第三方API发出了请求,它以XML格式给出了以下响应.

<?xml version="1.0" ?>
<abc>
<xyz>
<code>-112</code>
<message>No such device</message>
</xyz>
</abc>
Run Code Online (Sandbox Code Playgroud)

我用这段代码读了这个.

 XmlDocument doc = new XmlDocument();
    doc.Load("*** url ***");

    XmlNode node = doc.SelectSingleNode("/abc/xyz");
    string code = node.SelectSingleNode("code").InnerText;
    string msg = node.SelectSingleNode("message").InnerText;

    Response.Write("Code: " + code);
Response.Write("Message: "+ msg);
Run Code Online (Sandbox Code Playgroud)

但我在这一行上收到错误:

string code = node.SelectSingleNode("code").InnerText;
Run Code Online (Sandbox Code Playgroud)

错误是:

你调用的对象是空的.

c# xml asp.net xml-parsing

1
推荐指数
1
解决办法
846
查看次数

如何在同一个函数中传递不同数量的参数?

我有类似的问题,但没有得到满意的答案.

我有一个功能

func(int a,int b)
{
//code....
}
Run Code Online (Sandbox Code Playgroud)

该函数接受两个参数(a和b).我想在同一个函数中传递不同数量的参数.我知道有一个重载的概念,但我不知道我将通过多少个参数.我在C#(asp.net)工作.

c# overloading function

0
推荐指数
1
解决办法
342
查看次数

如何从两个或两个以上的查询中获得组合输出?

我有一张桌子ABC.我正在使用查询

select count(*) from ABC where COLA=123; //output is 3
Run Code Online (Sandbox Code Playgroud)

select count(*) from ABC WHERE COLA=321; //output is 6

我希望两个输出结合起来

| someColumnName |
|    3           |
|    6           |
Run Code Online (Sandbox Code Playgroud)

有没有办法构建框架查询,以便我可以实现这一目标?

sql database oracle

0
推荐指数
1
解决办法
38
查看次数

如何从字符串中删除"<"和">"?

我有一个字符串<hello>.我想删除< and >.我试过remove()但它不起作用.

string str = "<hello>";
string new_str = str.Remove(str.Length-1);
Run Code Online (Sandbox Code Playgroud)

但是,它不起作用.如何< and >从字符串中删除?

c# asp.net

-3
推荐指数
2
解决办法
154
查看次数