鍍金池/ 問(wèn)答/ HTML問(wèn)答
孤影 回答

點(diǎn)擊兩次肯定一次為true一次為false啊,和antd沒(méi)關(guān)系,一個(gè)checkbox點(diǎn)擊切換狀態(tài),原生的也是這樣

墨小白 回答

你試試從一個(gè)內(nèi)容比較少的頁(yè)面去另一個(gè)內(nèi)容比較少的頁(yè)面,看會(huì)不會(huì)出現(xiàn)滾動(dòng)條,我覺(jué)得是之前的高度沒(méi)有被改變,我也不清楚你具體是用哪種技術(shù)寫(xiě)的

貓館 回答

npm run debug 瀏覽器會(huì)自動(dòng)開(kāi)一個(gè)debug頁(yè)面,真機(jī)掃描頁(yè)面上的二維碼,然后頁(yè)面會(huì)出現(xiàn)debugger和inspector選項(xiàng),點(diǎn)擊inspector進(jìn)入頁(yè)面調(diào)試

別硬撐 回答

一個(gè)render一次渲染一個(gè)日期組件,兩個(gè)元素的class區(qū)別開(kāi)試試

clipboard.png
clipboard.png
clipboard.png

下墜 回答

env里也加上 ["import", { "libraryName": "antd", "libraryDirectory": "es", "style": "css" }]。

安若晴 回答

最后的頁(yè)數(shù)應(yīng)該是class=end,你可以自己看下是不是,然后設(shè)置display:none應(yīng)該就可以隱藏了,
是不是這個(gè)意思

有你在 回答

router.replace(location) 相當(dāng)于 window.history.replaceState

猜測(cè) 是不是history里沒(méi)有值

你換 this.$router.push('/home')試試

咦?為什么前綴 prefix那里要加 []???

終相守 回答

我手機(jī)上沒(méi)法測(cè),不過(guò)你這個(gè)很容易看出來(lái),你需要確認(rèn)client.service是不是訪問(wèn)的結(jié)果。很明顯不是,那么這個(gè)result有什么屬性看一下,比如result.content或者response或者body什么。回公司我試下。

舊城人 回答

已經(jīng)解決了,而且寫(xiě)了相關(guān)的demogithub上了
給鏈接 https://github.com/nurdun/ion...
@dml1874

不舍棄 回答

(解決方案具有時(shí)效性,未來(lái)weex的adnroid模板可能會(huì)解決這個(gè)問(wèn)題)

自己搗鼓解決了.參考http://www.shymean.com/articl...4.3節(jié)
然后android模版里有bug,最簡(jiǎn)單的修復(fù)方法是在WxPageActivity.java的onCreate方法

try {
        JSONObject initData = new JSONObject(uri.toString());
        String bundleUrl = initData.optString("WeexBundle", null);
        if (bundleUrl != null) {
          mUri = Uri.parse(bundleUrl);
        }

        ......
        ......
      } catch (JSONException e) {
        e.printStackTrace();
      }
    }

這里catch里面加一句mUri = Uri.parse(uri.toString());

......
} catch (JSONException e) {
    e.printStackTrace();
    mUri = Uri.parse(uri.toString());
}

這只是搞著玩兒。。當(dāng)然最好應(yīng)該是在if (uri != null){下面寫(xiě),暫時(shí)不會(huì)android,多了解一點(diǎn)再搗鼓。

==============================================

JSONObject initData = new JSONObject(uri.toString());
String bundleUrl = initData.optString("WeexBundle", null);

的意思。。。如果我寫(xiě)navigator.push({url:'{"WeexBundle":"files://assets/dist/test.js"}'})豈不就是可以了....

純妹 回答

這個(gè)很明顯不是后端的錯(cuò)誤,而是你的請(qǐng)求錯(cuò)誤,如果你使用的是jQuery,那么你缺少 datatype:"JSON",如果你是,這個(gè)在瀏覽器中查看就是缺少 --header, 應(yīng)該有 header 'Content-type: application/json'。

她愚我 回答

一般通過(guò)URL把model的ID傳給對(duì)應(yīng)頁(yè)面,然后在頁(yè)面里通過(guò)ID向后端重新請(qǐng)求model

瘋浪 回答

vue 提倡 狀態(tài)驅(qū)動(dòng)界面,用data里面字段,控制界面的組件顯示或者隱藏就非常合理了。

不同字段對(duì)應(yīng)的不同的顯示邏輯,也就很合理了。

心癌 回答

let allSpan = document.querySelectorAll('#yourdiv span')
let spanArr = [];
Array.prototype.forEach.call(allSpan, (v) => {

if(v.className != "") spanArr.push(v);

})

念舊 回答

解決nodejs require module時(shí)循環(huán)引用會(huì)導(dǎo)致undefined的問(wèn)題
這個(gè)一般在定義關(guān)聯(lián)的時(shí)候會(huì)用。
目前我的做法是把所有model的關(guān)聯(lián)放到一個(gè)js去做

import { Authorize, AuthorizeAttributes, AuthorizeInstance } from './authorize';
import { Comment, CommentAttributes, CommentInstance } from './comment';
import { Hit, HitAttributes, HitInstance } from './hit';
import { Moneylog, MoneylogAction, MoneylogAttributes, MoneylogInstance } from './moneylog';
import { Order, OrderAttributes, OrderInstance } from './order';
import { Post, PostAttributes, PostContentType, PostInstance } from './post';
import { Poundage, PoundageAttributes, PoundageInstance } from './poundage';
import { User, UserAttributes, UserInstance } from './user';
import { Withdrawal, WithdrawalAttributes, WithdrawalInstance } from './withdrawal';

Comment.belongsTo(Post, { foreignKey: 'post_id', as: 'post' });
Comment.belongsTo(User, { foreignKey: 'user_id', as: 'user' });

Order.belongsTo(User, { foreignKey: 'user_id', as: 'user' });
Order.belongsTo(Post, { foreignKey: 'post_id', as: 'post' });

Post.belongsTo(User, { foreignKey: 'user_id', as: 'user' });
Post.hasMany(Comment, { foreignKey: 'post_id', as: 'commentList' });

User.hasMany(Post, { foreignKey: 'user_id', as: 'posts' });
User.hasMany(Order, { foreignKey: 'user_id', as: 'orders' });
User.hasMany(Comment, { foreignKey: 'user_id', as: 'comment' });
孤島 回答

你可以在componentDidMount 中去做綁定事件這件事。要設(shè)置的組件上添加refs,didMount中獲取refs然后遍歷來(lái)設(shè)置事件。